文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C# 版的 var_dump

C# 版的 var_dump

时间:2011-04-14  来源:the illusion

    ///<summary>
/// equiv of PHP's var dump for an object’s properties because i cbf writing all the properties out.
///</summary>
///<param name="info"></param>
private static string var_dump(object info)
{
StringBuilder sb
= new StringBuilder();

Type t
= info.GetType();
PropertyInfo[] props
= t.GetProperties();
sb.AppendFormat(
"{0,-18} {1}", "Name", "Value");
sb.AppendLine();
foreach (PropertyInfo prop in props)
{
sb.AppendFormat(
"{0,-18} {1}", prop.Name, prop.GetValue(info, null).ToString());
sb.AppendLine();
}

return sb.ToString();
}

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载