首页 > 编程 > C# > 正文

自动输出类的字段值实用代码分享

2020-01-24 02:58:04
字体:
来源:转载
供稿:网友

复制代码 代码如下:

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()
                                );
        }
    }
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表