Unlike a class, a struct is not permitted to declare a parameterless instance constructor. Instead, every struct implicitly has a parameterless instance constructor, which always returns the value that results from setting all value type fields to their default value and all reference type fields to null (11.1.1). A struct can declare instance constructors having parameters. [Example: For example Given the above declaration, the statements both create a Point with x and y initialized to zero. end example] A struct instance constructor is not permitted to include a constructor initializer of the form base(...). The this variable of a struct instance constructor corresponds to an out parameter of the struct type, and similar to an out parameter, this must be definitely assigned (12.3) at every location where the constructor returns. [Example: Consider the instance constructor implementation below: No instance member function (including the set accessors for the properties X and Y) can be called until all fields of the struct being constructed have been definitely assigned. Note, however, that if Point were a class instead of a struct, the instance constructor implementation would be permitted. end example]