Struct char
Represents a character as a UTF-16 code unit.
Inherited Members
Namespace: System
Assembly: mscorlib.dll
Syntax
public char
Fields
MaxValue
Represents the largest possible value of a Char. This field is constant.
Declaration
public const char MaxValue = '\uffff'
Field Value
Type | Description |
---|---|
char |
MinValue
Represents the smallest possible value of a Char. This field is constant.
Declaration
public const char MinValue = '\0'
Field Value
Type | Description |
---|---|
char |
Methods
ToLower()
Returns the lower case character.
Declaration
public char ToLower()
Returns
Type | Description |
---|---|
char | The lower case character. |
ToString()
Converts the value of this instance to its equivalent string representation.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The string representation of the value of this instance. |
Overrides
ToUpper()
Returns the upper case character.
Declaration
public char ToUpper()
Returns
Type | Description |
---|---|
char | The upper case character. |