class Program{
static void Main(string[] args){
User user = new User();
Type type = user.GetType();
PropertyInfo prop = type.GetProperty("Name");
prop.SetValue(user, "Bangalore", null);
System.Console.WriteLine(user.Name);
Console.ReadLine();
}
}
class User{
public int Id { get; set; }
public string Name { get; set; }
}
输出
Bangalore
登录后复制
以上就是如何在C#中通过反射设置属性值?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!