Exemple #1
0
 public static GDItemDataType AddFlag(this GDItemDataType current, GDItemDataType value)
 {
     return(current | value);
 }
Exemple #2
0
 public static GDItemDataType RemoveFlag(this GDItemDataType current, GDItemDataType value)
 {
     return(current & ~value);
 }
Exemple #3
0
 public static bool IsFlagSet(this GDItemDataType current, GDItemDataType value)
 {
     return((current & value) != 0);
 }