var attributes = typeof(MyClass).GetCustomAttributes(typeof(TestAttribute), true); //MyClass 表示引用特性的类 TestAttribute特性定义的类
foreach (var attribute in attributes)
{
TestAttribute myAttribute = attribute as TestAttribute;
if (myAttribute != null)
{
Console.WriteLine(myAttribute.Msg);
}
}
时间: 2024-10-12 18:06:20