Beispiel #1
0
 private static bool _PositiveNotEqual(EnumI2 e, short v)
 {
     return (short)e != v;
 }
Beispiel #2
0
 private static bool _PositiveLessThanOrEqual(EnumI2 e, short v)
 {
     return (short)e <= v;
 }
Beispiel #3
0
 private static bool _PositiveLessThan(EnumI2 e, short v)
 {
     return (short)e < v;
 }
Beispiel #4
0
 private static bool _PositiveGreaterThanOrEqual(EnumI2 e, short v)
 {
     return (short)e >= v;
 }
Beispiel #5
0
 private static bool _PositiveGreaterThan(EnumI2 e, short v)
 {
     return (short)e > v;
 }
Beispiel #6
0
 private static bool _NegativeEqual(EnumI2 e, short v)
 {
     return (short)e == v;
 }