Table of Contents 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 Notes DownloadECMA-334 C# Language Specification


10 Basic concepts
10.4 Members
10.4.2 Struct members
Paragraph 11 The members of a struct are the members declared in the struct and the members inherited from the struct's direct base class System.ValueType and the indirect base class object.
Paragraph 21 The members of a simple type correspond directly to the members of the struct type aliased by the simple type: - 2 The members of sbyte are the members of the System.SByte struct.
- 3 The members of byte are the members of the System.Byte struct.
- 4 The members of short are the members of the System.Int16 struct.
- 5 The members of ushort are the members of the System.UInt16 struct.
- 6 The members of int are the members of the System.Int32 struct.
- 7 The members of uint are the members of the System.UInt32 struct.
- 8 The members of long are the members of the System.Int64 struct.
- 9 The members of ulong are the members of the System.UInt64 struct.
- 10 The members of char are the members of the System.Char struct.
- 11 The members of float are the members of the System.Single struct.
- 12 The members of double are the members of the System.Double struct.
- 13 The members of decimal are the members of the System.Decimal struct.
- 14 The members of bool are the members of the System.Boolean struct.
|
Jagger Software Ltd |
Company # 4070126 |
VAT # 762 5213 42 |

