1 // cs0217.cs: In order to be applicable as a short circuit operator a user-defined logical operator `UserOperatorClass.operator &(UserOperatorClass, UserOperatorClass)' must have the same return type as the type of its 2 parameters
4 public class UserOperatorClass
6 public static bool operator & (UserOperatorClass u1
, UserOperatorClass u2
) {
10 public static bool operator true (UserOperatorClass u
) {
14 public static bool operator false (UserOperatorClass u
) {
18 public static void Main () {
20 UserOperatorClass x
= new UserOperatorClass();
21 UserOperatorClass y
= new UserOperatorClass();
22 UserOperatorClass z
= x
&& y
;