예제 #1
0
파일: Bool.cs 프로젝트: nlcamp/iotedge
 public bool Equals(Bool other) => this.value == other.value;
예제 #2
0
 public static Bool IsDefined(this Bool input) => Undefined.IsDefined(input);
예제 #3
0
파일: Bool.cs 프로젝트: nlcamp/iotedge
 public int CompareTo(Bool other) => this.value - other.value;
예제 #4
0
 public static Bool IsDefined(Bool input) => (Bool) !input.Equals(UndefinedBool);