示例#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);