Compiler Error CS0573
'field declaration' : cannot have instance field initializers in structs
You cannot initialize an instance field of a struct. Fields of value types will be initialized to their default values, and reference-type fields will be initialized to null.