zoukankan      html  css  js  c++  java
  • C# 遍历类的属性并取出值

       最近悟出来一个道理,在这儿分享给大家:学历代表你的过去,能力代表你的现在,学习代表你的将来。

       十年河东十年河西,莫欺少年穷

       学无止境,精益求精

       今天有点胡思乱想,想遍历MVC Model的属性并取值:

       这个方法还是很简单的,通过反射即可遍历属性,我总结的方法如下:

    namespace WeiXinApi.CommonCS
    {
        public class ForeachClass
        {
            /// <summary>
            /// C#反射遍历对象属性
            /// </summary>
            /// <typeparam name="T">对象类型</typeparam>
            /// <param name="model">对象</param>
            public static void ForeachClassProperties<T>(T model)
            {
                Type t = model.GetType();
                PropertyInfo[] PropertyList = t.GetProperties();
                foreach (PropertyInfo item in PropertyList)
                {
                    string name = item.Name;
                    object value = item.GetValue(model, null);
                }
            }
        }
    }

       下面我们来简单测试下:

        新建Model如下:

     public class AddressInfo
        {
            public int Id { get; set; }
            public string userName { get; set; }
            public string userTel { get; set; }
            public string Addressdetail { get; set; }
            public int isMoren { get; set; }
    
            public AddressInfo()
            {
                Id = 1;
                userName = "陈卧龙";
                userTel = "1813707015*";
                Addressdetail = "江苏省苏州市工业园区国际科技园";
                isMoren = 1;
            }
    }

       调用如下:

        public partial class index : System.Web.UI.Page
        {
            protected void Page_Load(object sender, EventArgs e)
            {
                //Response.Redirect("/Home/Login");
                AddressInfo model = new AddressInfo();
                ForeachClass.ForeachClassProperties<AddressInfo>(model);
            }
        }

       测试结果如下:

       经过测试,我们可以得到对象的各个属性及对应的值、

       其实这块内容输入C# 反射系列,小弟也是误打误撞,撞入了C# 反射,索性每天学一点

       @陈卧龙的博客

  • 相关阅读:
    iOS 9和xcode7设置
    iOS9.0 生成证书流程一(非推送)
    Undefined symbols for architecture i386: "_OBJC_CLASS_$_KKGridView", referenced from:
    iOS 日志自动上报
    百度编辑器ueditor1.4.3配置记录
    2016年初中数学知识点中考总复习总结归纳
    Ubuntu搭建LAMP环境
    ubuntu 配置lamp
    phpstorm zhuce ma
    请帮忙给看下
  • 原文地址:https://www.cnblogs.com/chenwolong/p/fanshe.html
Copyright © 2011-2022 走看看