1. 程式人生 > >.net 簡單反射應用

.net 簡單反射應用

write 應用 console type 單反 .get con ttr true

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);
}
}

.net 簡單反射應用