S
- sbyte
-
A one-byte signed integral datatype.
- sealed
-
A class modifier that indicates a class cannot be derived from.
- set
-
The name of the accessor that sets the value of a property.
- short
-
A two-byte signed integral datatype.
- sizeof
-
An operator that returns the size in bytes of a struct.
- stackalloc
-
An operator that returns a pointer to a specified number of value
types allocated on the stack.
- static
-
A type member modifier that indicates that the member applies to the
type rather than an instance of the type.
- string
-
A predefined reference type that represents an immutable sequence of
Unicode characters.
- struct
-
A value type that combines data and functionality in one unit.
- switch
-
A selection statement that allows a selection of choices to be made
based on the value of a predefined type.
|