• C#反射


             
    class UserInfo {
            public int ID { get; set; }
            public string Name { get; set; }
            public DateTime? CreateDate { get; set; }
            public decimal? Number { get; set; }
            public bool IsUse { get; set; }
        }

    UserInfo userInfo = new UserInfo(); string values = string.Empty; foreach (System.Reflection.PropertyInfo p in userInfo.GetType().GetProperties()) { if (p.PropertyType == typeof(string)) { values += string.Format("{0}='{1}', ", p.Name, p.GetValue(userInfo)); } if (p.PropertyType == typeof(int)|| p.PropertyType == typeof(uint)) { values += string.Format("{0}={1},", p.Name, p.GetValue(userInfo)); } if (p.PropertyType == typeof(DateTime)) { values += string.Format("{0}='{1}', ", p.Name, p.GetValue(userInfo)); } if (p.PropertyType == typeof(decimal) || p.PropertyType == typeof(double)|| p.PropertyType == typeof(float)) { values += string.Format("{0}={1}, ", p.Name, p.GetValue(userInfo)); } if (p.PropertyType == typeof(bool)) { values += string.Format("{0}={1}, ", p.Name, p.GetValue(userInfo)); } if (p.PropertyType == typeof(sbyte)) { values += string.Format("{0}={1}, ", p.Name, p.GetValue(userInfo)); } if (p.PropertyType == typeof(byte) || p.PropertyType == typeof(short) || p.PropertyType == typeof(ushort) ) { values += string.Format("{0}={1}, ", p.Name, p.GetValue(userInfo)); } if (p.PropertyType == typeof(long) || p.PropertyType == typeof(ulong)) { values += string.Format("{0}={1}, ", p.Name, p.GetValue(userInfo)); } // values +=string.Format( "{0}={1},", p.Name, p.GetValue(userInfo)); // Console.WriteLine("Name:{0} Value:{1}", p.Name, p.GetValue(userInfo)); } Console.WriteLine(values);
  • 相关阅读:
    Ajax 学习笔记
    StringBulider简单用法
    asp.net 发送邮件
    log4net日志组件
    Web.Config文件详解
    关闭discuzX3.2注册页面的注册邮箱验证
    Oracle 序列(sequence)的创建、修改及删除
    MySQL 和 Oracle 主键自增长
    EL(表达式)语言的几种运算符
    SQL:select case when 的用法
  • 原文地址:https://www.cnblogs.com/XiaoHongMao1/p/14442913.html
Copyright © 2020-2023  润新知