Пример #1
0
 /// <summary>
 /// Get the property's method attributes, as properties rather than non-trivial bit math
 /// </summary>
 /// <returns></returns>
 public ParsedMethodAttributes GetParsedMethodAttributes()
 {
     //GetGetterAndSetter(out var getter, out var setter);
     if (Getter != null)
     {
         return(Getter.GetParsedMethodAttributes());
     }
     else
     {
         return(Setter.GetParsedMethodAttributes());
     }
 }