我有一些代码来定义自定义属性,然后读入代码,它无法工作。为了尝试解决问题,我返回并尝试使用 DisplayName,但是,我仍然遇到相同的问题 GetCustomAttribute 或 GetCustomAttributes 无法列出它们。我有一个下面的例子。
我在一个类中设置了一个 DisplayName 属性,例如...
class TestClass
{
public TestClass() { }
[DisplayName("this is a test")]
public long testmethod{ get; set; }
}
然后我有一些代码来列出上面类中每个方法的 DisplayName 属性。
TestClass testClass = new TestClass();
Type type = testClass.GetType();
foreach (MethodInfo mInfo in type.GetMethods())
{
DisplayNameAttribute attr = (DisplayNameAttribute)Attribute.GetCustomAttribute(mInfo, typeof(DisplayNameAttribute));
if (attr !=null)
{
MessageBox.Show(attr.DisplayName);
}
}
问题是没有列出 DisplayName 属性,上面的代码编译、运行并且不显示任何消息框。
我什至尝试将 for each 循环与 GetCustomAttributes 一起使用,再次列出每个方法的所有属性,从未列出 DisplayName 属性,但是,我确实获得了编译属性和其他此类系统属性。
有人知道我做错了什么吗?
更新 - 非常感谢 NerdFury 指出我使用的是方法而不是属性。一旦改变一切工作。