得到一个Object的属性

        private static object GetPropertyValue(object obj, string property)

        {

            System.Reflection.PropertyInfo propertyInfo =  obj.GetType().GetProperty(property);

            return propertyInfo.GetValue(obj, null);

        }        

 

你可能感兴趣的:(object)