自动输出类的字段值实用代码分享
发布时间:2016-12-28 来源:查字典编辑
摘要:复制代码代码如下:usingSystem;usingSystem.Linq;usingSystem.Reflection;namespace...
复制代码 代码如下:
using System;
using System.Linq;
using System.Reflection;
namespace LucienBao.Common
{
public static class ToStringHelper
{
public static string ToString(object obj)
{
Type t = obj.GetType();
FieldInfo[] fis = t.GetFields();
return string.Join(Environment.NewLine,
fis.Select<FieldInfo, string>
(p => p.Name + ":" + p.GetValue(obj).ToString()).ToArray()
);
}
}
}