C#反射技术(读取和设置类的属性)的例子

发布时间:2019-07-23编辑:脚本学堂
使用c#的反射时,少量属性的自动化操作手动添加几下没有问题,但是属性数量较多时就不太适用了,何况对扩展和维护性造成很多的不遍。

使用c#的反射时,少量属性的自动化操作手动添加几下没有问题,但是属性数量较多时就不太适用了,何况对扩展和维护性造成很多的不遍。
注:以下代码若不能直接使用,请添加 using System.Text; 的引用。

要想对一个类型实例的属性或字段进行动态赋值或取值,首先要得到这个实例或类型的Type。来看具体的例子吧。
首先,创建一个测试的类
 

复制代码 代码如下:
public class MyClass
{
public int one { set; get; }
public int two { set; get; }
public int five { set; get; }
public int three { set; get; }
public int four { set; get; }
}

然后,编写反射该类的代码:
 

复制代码 代码如下:
MyClass obj = new MyClass();
Type t = typeof(MyClass);
//循环赋值
int i = 0;
foreach (var item in t.GetProperties())
{
item.SetValue(obj, i, null);
i += 1;
}
//单独赋值
t.GetProperty("five").SetValue(obj, 11111111, null);
//循环获取
StringBuilder sb = new StringBuilder();
foreach (var item in t.GetProperties())
{
sb.Append("类型:" + item.PropertyType.FullName + " 属性名:" + item.Name + " 值:" + item.GetValue(obj, null) + "<br />");
}
//单独取值
int five = Convert.ToInt32(t.GetProperty("five").GetValue(obj, null));
sb.Append("单独取five的值:" + five);
string result = sb.ToString();
Response.Write(result);

测试显示结果:
类型:System.Int32 属性名:one 值:0
类型:System.Int32 属性名:two 值:1
类型:System.Int32 属性名:five 值:11111111
类型:System.Int32 属性名:three 值:3
类型:System.Int32 属性名:four 值:4
单独取five的值:11111111

了解了类的属性反射使用后,你可能想到了方法也是可以这样做的,即t.GetProperties()改为t.GetMethods(),操作方法同上。