show/hide this revision's text 2 removed "error" comment

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; }
    }
show/hide this revision's text 1

You can fix this by first calling the default constructor:

    struct MyStruct {
        public MyStruct(int size)
            : this() {
            this.Size = size; // <-- Compile-Time Error!
        }

        public int Size { get; set; }
    }