public static void Main()
Console.WriteLine("Output: {0}", TestStruct.Value1);
public static readonly TestStruct Value1 = 1;
public static readonly TestStruct Value2 = 2;
public static readonly TestStruct Value3 = 3;
private TestStruct(int value)
public static implicit operator int(TestStruct instance)
public static implicit operator TestStruct(int instance)
return new TestStruct(instance);