摘要: using System.Reflection; Type t = typeof(YourClass); foreach (PropertyInfo pi in t.GetProperties()) { Response.Write(pi.Name); } 阅读全文
posted @ 2009-09-23 16:53 微星 阅读(288) 评论(1) 推荐(0) 编辑