码迷,mamicode.com
首页 > Web开发 > 详细

.net 简单反射应用

时间:2017-08-15 16:02:52      阅读:164      评论:0      收藏:0      [点我收藏+]

标签: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);
     }
}

.net 简单反射应用

标签:att   eof   line   mat   简单   attribute   nbsp   each   for   

原文地址:http://www.cnblogs.com/huguole/p/7365399.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!