标签:style blog color os io for ar div
在项目中需要遍历各种对象,可以通过如下方法遍历。
/// <summary> /// 返回对象字符串 /// </summary> /// <param name="obj"></param> /// <returns></returns> public string ReturnString(object obj) { StringBuilder str = new StringBuilder(); foreach (System.Reflection.PropertyInfo p in obj.GetType().GetProperties()) { str.Append(string.Format("\tName:{0} Value:{1}\r\n", p.Name, p.GetValue(obj, null))); } return str.ToString(); ; }
标签:style blog color os io for ar div
原文地址:http://www.cnblogs.com/PLifeCopyDown/p/3927027.html