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

 2023-09-09 阅读 14 评论 0

摘要:/// /// 获取类中的属性值/// /// /// /// public string GetModelValue(string FieldName, object obj){try{Type Ts = obj.GetType();object o = Ts.GetProperty(FieldName).GetValue(obj, null);string Value = Convert.ToString(o);if (string.IsNullOrEmpty
/// /// 获取类中的属性值/// /// /// /// public string GetModelValue(string FieldName, object obj){try{Type Ts = obj.GetType();object o = Ts.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 Ts = obj.GetType();object v = Convert.ChangeType(Value, Ts.GetProperty(FieldName).PropertyType);Ts.GetProperty(FieldName).SetValue(obj, v, null);return true;}catch{return false;}}

 

在网上找没有找到,刚自己写了一个方法,供分享.

在写方法时这里有一个东西弄了很久没有搞好.就是属性类型如果是int 时,传入string字串就会设置不成功.

这里我用到了Convert.ChangeType 转换,根据属性类型自动转换.

转载于:https://www.cnblogs.com/sjqq/p/8427949.html

版权声明:本站所有资料均为网友推荐收集整理而来,仅供学习和研究交流使用。

原文链接:https://hbdhgg.com/4/21185.html

发表评论:

本站为非赢利网站,部分文章来源或改编自互联网及其他公众平台,主要目的在于分享信息,版权归原作者所有,内容仅供读者参考,如有侵权请联系我们删除!

Copyright © 2022 匯編語言學習筆記 Inc. 保留所有权利。

底部版权信息