返回

C#通过反射设置属性值和获取属性值

发布时间:2022-09-22 16:41:29 160
        // 获取类中的属性值

public string GetModelValue(string FieldName, object obj){
try
{
Type t = obj.GetType();
object o = t.GetProperty(FieldName).GetValue(obj, null);
string Value = Convert.ToString(o);
if (string.IsNullOrEmpty(Value)) return null;
return Value;
}
catch
{
return null;
}
}


// 设置类中的属性值

public bool SetModelValue(string FieldName,string Value, object obj){
try{
Type t = obj.GetType();
object v = Convert.ChangeType(Value, t.GetProperty(FieldName).PropertyType);
t.GetProperty(FieldName).SetValue(obj, v, null);
return true;
}
catch{
return false;
}
}
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报
评论区(0)
按点赞数排序
用户头像
精选文章
thumb 中国研究员首次曝光美国国安局顶级后门—“方程式组织”
thumb 俄乌线上战争,网络攻击弥漫着数字硝烟
thumb 从网络安全角度了解俄罗斯入侵乌克兰的相关事件时间线
下一篇
分支语句(选择结构) 2022-09-22 16:00:04