This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
22.11 Structs Grammar
11.1 Struct declarations
- struct-declaration:
- attributesopt struct-modifiersopt struct identifier struct-interfacesopt struct-body ;opt
11.1.1 Struct modifiers
- struct-modifiers:
- struct-modifier
struct-modifiers struct-modifier
- struct-modifier:
- new
public
protected
internal
private
11.1.2 Interfaces
- struct-interfaces:
- : interface-type-list
11.1.3 Struct body
- struct-body:
- { struct-member-declarationsopt }
11.2 Struct members
- struct-member-declarations:
- struct-member-declaration
struct-member-declarations struct-member-declaration
- struct-member-declaration:
- class-member-declaration