You can fix this by first calling the default constructor:
struct MyStruct {
public MyStruct(int size)
: this() {
this.Size = size; // <-- Compile-Time Error!
now works
}
public int Size { get; set; }
}
