码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2019-01-08 15:23:38      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:rop   获取   cat   col   get   tty   属性   style   class   


        /// 
        /// 获取类中的属性值
        /// 
        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;
            }
        }    

 

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

标签:rop   获取   cat   col   get   tty   属性   style   class   

原文地址:https://www.cnblogs.com/code1992/p/10238219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!