永发信息网

c#中GetValue这个方法是什么意思

答案:3  悬赏:0  手机版
解决时间 2021-04-03 23:55
  • 提问者网友:感性作祟
  • 2021-04-03 07:00
c#中GetValue这个方法是什么意思
最佳答案
  • 五星知识达人网友:十鸦
  • 2021-04-03 07:14
C#反射技术的简单操作(读取和设置类的属性)
public class A 

       { 

           public int Property1 { get; set; } 

       } 

static void Main(){ 

           A aa = new A(); 

           Type type = aa.GetType();//获取类型 

           System.Reflection.PropertyInfo propertyInfo = type.GetProperty("Property1"); 

           propertyInfo.SetValue(aa, 5, null);//给对应属性赋值 

           int value = (int)propertyInfo.GetValue(aa, null); 

           Console.WriteLine(value ); 


 
少量属性的自动化操作手动添加几下当然是没有问题的,但是属性数量较多的时候敲起这些繁锁的代码可以困了,再说对扩展和维护性造成很多的不便,这时,就需要使用反射来实现了。
要想对一个类型实例的属性或字段进行动态赋值或取值,首先得得到这个实例或类型的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) + ""); 

//单独取值 
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
全部回答
  • 1楼网友:酒者煙囻
  • 2021-04-03 09:11
你说的是反射吗?如果是反射的话GetValue()是用来获取指定对象的属性值的
  • 2楼网友:毛毛
  • 2021-04-03 08:03
你说的是反射吗?如果是反射的话GetValue()是用来获取指定对象的属性值的
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯