摘要: //本函数是使用了反射来实现访问对象的属性值的函数 //using System.Reflection; private void GetObjectPropertyValue(clsUser user) { Type t = user.GetType(); foreach (PropertyInfo pi in t.GetProperties()) ... 阅读全文
posted @ 2008-03-26 18:01 zijinguang 阅读(989) 评论(0) 推荐(0) 编辑