The members of a struct are the members declared in the struct and the members inherited from class object
.
The members of a simple type correspond directly to the members of the struct type aliased by the simple type:
sbyte
are the members of the System.SByte
struct.byte
are the members of the System.Byte
struct.short
are the members of the System.Int16
struct.ushort
are the members of the System.UInt16
struct.int
are the members of the System.Int32
struct.uint
are the members of the System.UInt32
struct.long
are the members of the System.Int64
struct.ulong
are the members of the System.UInt64
struct.char
are the members of the System.Char
struct.float
are the members of the System.Single
struct.double
are the members of the System.Double
struct.decimal
are the members of the System.Decimal
struct.bool
are the members of the System.Boolean
struct.