예제 #1
0
파일: Flags.cs 프로젝트: MPapst/dnp3
 public void Set(BinaryQuality flag)
 {
     this.value |= (byte)flag;
 }
예제 #2
0
파일: Flags.cs 프로젝트: MPapst/dnp3
 public bool IsSet(BinaryQuality flag)
 {
     return((this.value & (byte)flag) != 0);
 }