1. 程式人生 > >C#反射獲取屬性值和設定屬性值

C#反射獲取屬性值和設定屬性值

 
 
 
        /// 
        /// 獲取類中的屬性值
        /// 
        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; } }