1. 首页
  2. 数据库
  3. 其它
  4. 自动输出类的字段值实用代码分享

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

上传者: 2021-01-04 03:19:52上传 PDF文件 25.07KB 热度 8次
代码如下: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(E
用户评论