码迷,mamicode.com
首页 > Web开发 > 详细

.NET 判断对象所有属性是否为空

时间:2017-09-10 10:00:58      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:exchange   string   assign   any   style   class   log   sign   coder   

如题,此实例考虑对象属性较多的情况(暂不考虑此对象设计是否合理),当想要验证众多对象是否为空时,If Else不在考虑之列,期望用最简单的代码实现,如下:

参考:https://codereview.stackexchange.com/questions/70341/check-if-any-of-class-properties-is-not-null-empty-was-assigned

代码:

ObjectProperties op = new ObjectProperties();
            op.name = "test";
            op.age = 15;
   
            StringBuilder sb = new StringBuilder();

            PropertyInfo[] properties = op.GetType().GetProperties();
            foreach (PropertyInfo pi in properties)
            {
                if (pi.GetValue(op,null) != ""  && pi.GetValue(op, null) != null)
                {
                    sb.Append(
                    string.Format("Name: {0} | Value: {1}",
                            pi.Name,
                            pi.GetValue(op, null)
                        )
                );
                }
                
            }
            Console.WriteLine(sb.ToString());
            Console.ReadLine();
            
        }

代码逻辑简单,控制台应用程序实现,关键代码  pi.GetValue(op, null) ,已运行通过,达到期望,如有错,请指正。

.NET 判断对象所有属性是否为空

标签:exchange   string   assign   any   style   class   log   sign   coder   

原文地址:http://www.cnblogs.com/tymonyang/p/7500012.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!