标签:att eof line mat 简单 attribute nbsp each for
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);
}
}
标签:att eof line mat 简单 attribute nbsp each for
原文地址:http://www.cnblogs.com/huguole/p/7365399.html