C#判断属性是否是静态

2021-06-22 16:07

阅读:483

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

 1      /// 
 2         /// 检查是否是静态成员
 3         /// 
 4         /// 
 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


评论


亲,登录后才可以留言!