反射获取对象属性值和字段值

ps:没什么技术含量,直接贴代码

public T GetFieldValue<T>(object obj, string name)
        {
            Type type = obj.GetType();
            System.Reflection.FieldInfo fieldInfo = type.GetField(name);
            if (fieldInfo == null)
            {
                throw new MissingFieldException(name);
            }

            object objectValue = fieldInfo.GetValue(obj);
            return (T)objectValue;
        }

        public T GetValue<T>(object obj,string name)
        {
           Type type = obj.GetType();
           System.Reflection.PropertyInfo property = type.GetProperty(name);
           if (property == null)
           {
               throw new MissingFieldException(name);
           }
      
           object objectValue = property.GetValue(obj, null);
           return (T)objectValue;
        }

调用方法

string name = this.GetFieldValue<string>(person,"Name");
int age = this.GetValue<int>(person, "Age");
原文地址:https://www.cnblogs.com/huangzelin/p/4545953.html