码迷,mamicode.com
首页 > Windows程序 > 详细

C#判断属性是否是静态

时间:2019-01-02 15:02:55      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:color   ret   property   判断   summary   bsp   属性   method   nbsp   

 1      /// <summary>
 2         /// 检查是否是静态成员
 3         /// </summary>
 4         /// <returns></returns>
 5         protected bool CheckStatic(PropertyInfo propertyInfo)
 6         {
 7             var getMethod = propertyInfo.GetMethod;
 8             if (getMethod != null)
 9             {
10                 return getMethod.IsStatic;
11             }
12             else
13             {
14                 var setMethod = propertyInfo.SetMethod;
15                 return setMethod.IsStatic;
16             }
17         }

 

C#判断属性是否是静态

标签:color   ret   property   判断   summary   bsp   属性   method   nbsp   

原文地址:https://www.cnblogs.com/kent-apple/p/10208153.html

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