开发日记
Posted 竹殇
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了开发日记相关的知识,希望对你有一定的参考价值。
c# 遍历对象属性给对象赋值
TJlb_Mod tJlb = new TJlb_Mod();
tJlb.GetType().GetProperty("FNo").SetValue(tJlb, 11);
- System.Reflection.PropertyInfo[] properties = tJlb.GetType().GetProperties();
- foreach (System.Reflection.PropertyInfo property in properties)
- {
- string name=property.Name;
- string value = property.GetValue(tJlb).ToString();
- }
- /// <summary>
- /// 通过遍历属性赋值
- /// </summary>
- /// <returns></returns>
- private Values SetValues()
- {
- System.Reflection.PropertyInfo[] properties = tJlb.GetType().GetProperties();
- for (int i = 0; i < properties.Length; i++)
- {
- properties[i].SetValue(tJlb, (i + 1));
- }
以上是关于开发日记的主要内容,如果未能解决你的问题,请参考以下文章