コード例 #1
0
ファイル: Condition.cs プロジェクト: petrohi/Stratosphere
 public static Condition Or(Condition c0, Condition c1)
 {
     return Or(new Condition[] { c0, c1 });
 }
コード例 #2
0
ファイル: Condition.cs プロジェクト: petrohi/Stratosphere
 public static Condition Or(Condition c0, Condition c1, Condition c2, Condition c3)
 {
     return Or(new Condition[] { c0, c1, c2, c3 });
 }
コード例 #3
0
ファイル: Condition.cs プロジェクト: petrohi/Stratosphere
 public static Condition And(Condition c0, Condition c1, Condition c2)
 {
     return And(new Condition[] { c0, c1, c2 });
 }