コード例 #1
0
ファイル: Bool.cs プロジェクト: nlcamp/iotedge
 public bool Equals(Bool other) => this.value == other.value;
コード例 #2
0
ファイル: Undefined.cs プロジェクト: darobs/iotedge-k8s
 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
ファイル: Undefined.cs プロジェクト: darobs/iotedge-k8s
 public static Bool IsDefined(Bool input) => (Bool) !input.Equals(UndefinedBool);