得到一个Object的属性_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 得到一个Object的属性

得到一个Object的属性

 2014/6/20 12:05:33  狮子座男  程序员俱乐部  我要评论(0)
  • 摘要:privatestaticobjectGetPropertyValue(objectobj,stringproperty){System.Reflection.PropertyInfopropertyInfo=obj.GetType().GetProperty(property);returnpropertyInfo.GetValue(obj,null);}
  • 标签:一个
        private static object GetPropertyValue(object obj, string property)
        {
            System.Reflection.PropertyInfo propertyInfo =  obj.GetType().GetProperty(property);
            return propertyInfo.GetValue(obj, null);
        }        

 

发表评论
用户名: 匿名