码迷,mamicode.com
首页 > Windows程序 > 详细

c# 技巧

时间:2017-08-17 22:52:10      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:blog   技巧   info   code   c#   style   遍历   typeof   string   

1 遍历属性

Type t = typeof(Colors);
PropertyInfo[] pInfo = t.GetProperties();
foreach (PropertyInfo pi in pInfo)
{
    Color c = (Color)ColorConverter.ConvertFromString(pi.Name);
    ……
}

 

c# 技巧

标签:blog   技巧   info   code   c#   style   遍历   typeof   string   

原文地址:http://www.cnblogs.com/lged/p/7384682.html

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