Beispiel #1
0
 public void Set(AnalogQuality flag)
 {
     this.value |= (byte)flag;
 }
Beispiel #2
0
 public bool IsSet(AnalogQuality flag)
 {
     return((this.value & (byte)flag) != 0);
 }