Exemple #1
0
 public static bool Get(this DirectionsFlag a, Directions b)
 {
     return((a & b.ToFlag()) != 0);
 }
Exemple #2
0
 public static bool Any(this DirectionsFlag a)
 {
     return(((byte)a) != 0);
 }
Exemple #3
0
 public static bool Get(this DirectionsFlag a, DirectionsFlag b)
 {
     return((a & b) != 0);
 }