欢迎加我的QQ群:193522571,一起来讨论、交流!

字段反射

List<string> FieldListAll = "D1,D2,Tn1,Tn2,A,B,C".ToList();
List<string> FieldList = new List<string>();
foreach (string Field in FieldListAll)
{
double val = (double)this.GetType().GetField("d" + Field).GetValue(this);

if (val>0)
{
FieldList.Add(Field);
}
}

posted @ 2018-04-14 19:12  swtool  阅读(99)  评论(0编辑  收藏  举报
欢迎加我的QQ群:193522571,一起来讨论、交流!