标签:style blog color get cti c
private static object GetPropertyValue(object obj, string property) { System.Reflection.PropertyInfo propertyInfo = obj.GetType().GetProperty(property); return propertyInfo.GetValue(obj, null); }
得到一个Object的属性,布布扣,bubuko.com
得到一个Object的属性
原文地址:http://www.cnblogs.com/dangkei/p/3798745.html