public static void Main()
Console.WriteLine(value);
public int testValue {get; } = 2;
public static bool operator ==(Test t1, int value) => t1.testValue == value;
public static bool operator !=(Test t1, int value) => t1.testValue != value;
public static explicit operator int(Test t) => t.testValue;