首页 > 学院 > 开发设计 > 正文

得到一个Object的属性

2019-11-14 16:37:35
字体:
来源:转载
供稿:网友
        PRivate static object GetPropertyValue(object obj, string property)        {            System.Reflection.PropertyInfo propertyInfo =  obj.GetType().GetProperty(property);            return propertyInfo.GetValue(obj, null);        }        

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表