c# 如何通过反射 获取属性值
答案:3 悬赏:40 手机版
解决时间 2021-01-29 08:18
- 提问者网友:骨子里的高雅
- 2021-01-28 15:26
c# 如何通过反射 获取属性值
最佳答案
- 五星知识达人网友:野味小生
- 2021-01-28 16:41
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 );
}
{
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 );
}
全部回答
- 1楼网友:西岸风
- 2021-01-28 18:35
object value = classA.GetType().GetProperty(property.Name).GetValue(classA., null);
Console.WriteLine(value.ToString());
- 2楼网友:患得患失的劫
- 2021-01-28 17:57
你1、2两个问题可以换成一个问题,你可以通过获取给定控件的type来实现(gettype())。
你可以加qq:395099917 提供有偿.net(c#)咨询
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯