7 public MyTypeA (short b
)
12 public static MyTypeA
operator + (MyTypeA a
, MyTypeA b
)
14 throw new NotSupportedException ();
17 public static bool operator == (MyTypeA a
, MyTypeA b
)
22 public static bool operator != (MyTypeA a
, MyTypeA b
)
24 throw new NotSupportedException ();
27 public static bool operator > (MyTypeA a
, MyTypeA b
)
29 throw new NotSupportedException ();
32 public static bool operator < (MyTypeA a
, MyTypeA b
)
34 throw new NotSupportedException ();
42 public MyTypeB (short b
)
47 public static MyTypeB
operator + (MyTypeB a
, MyTypeB b
)
52 public static bool operator == (MyTypeB a
, MyTypeB b
)
57 public static bool operator != (MyTypeB a
, MyTypeB b
)
62 public static bool operator > (MyTypeB a
, MyTypeB b
)
67 public static bool operator < (MyTypeB a
, MyTypeB b
)
72 public static MyTypeB
operator & (MyTypeB a
, MyTypeB b
)
80 public static int Main ()