通过C#中的反射访问属性

本文关键字:访问 属性 反射 通过 | 更新日期: 2023-09-27 18:22:29

所以我试图使用反射从C#中的自定义属性访问数据。我所拥有的是:

属性类别:

[System.AttributeUsage(AttributeTargets.Class | AttributeTargets.Assembly)]
public class Table : System.Attribute
{
    public string Name { get; set; }
    public Table (string name)
    {
        this.Name = name;
    }
}

我有一个单独的组件,包含以下内容:

[Table("Data")]
public class Data
{
    public int PrimaryKey { get; set; }
    public string BankName { get; set; }
    public enum BankType { City, State, Federal };
}

在主程序中,我枚举当前目录中的所有文件,并过滤所有dll文件。一旦我有dll文件我运行:

var asm = Assembly.LoadFile(file);
var asmTypes = asm.GetTypes();

从这里开始,我尝试使用Assembly方法加载Table属性:GetCustomAtteribute(Type t, bool inherit)

但是,Table属性不显示在任何dll中,也不显示为程序集中加载的任何类型。

你知道我做错了什么吗?

提前谢谢。

更新:

以下是遍历类型并尝试提取属性的代码:

foreach (var dll in dlls)
            {
                var asm = Assembly.LoadFile(dll);
                var asmTypes = asm.GetTypes();
                foreach (var type in asmTypes)
                {
                    Table.Table[] attributes = (Table.Table[])type.GetCustomAttributes(typeof(Table.Table), true);
                    foreach (Table.Table attribute in attributes)
                    {
                        Console.WriteLine(((Table.Table) attribute).Name);
                    }
                }
        }

通过C#中的反射访问属性

如果Table.Table在两个程序集都引用的单独程序集中(即只有一个Table.Table类型),则应该工作。然而,这个问题表明出了问题。我建议做一些类似的事情:

    foreach (var attrib in Attribute.GetCustomAttributes(type))
    {
        if (attrib.GetType().Name == "Table")
        {
            Console.WriteLine(attrib.GetType().FullName);
        }
    }

并在Console.WriteLine上设置一个断点,这样您就可以看到发生了什么。特别是:

bool isSameType = attrib.GetType() == typeof(Table.Table);
bool isSameAssembly = attrib.GetType().Assembly == typeof(Table.Table).Assembly;

顺便说一句,我强烈建议调用TableAttribute