Struct Char
Represents a character as a UTF-16 code unit.
Inherited Members
Namespace: System
Assembly: mscorlib.dll
Syntax
public struct Char
Fields
| Improve this Doc View SourceMaxValue
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
| Improve this Doc View SourceToLower()
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
| Improve this Doc View SourceToUpper()
Returns the upper case character.
Declaration
public char ToUpper()
Returns
Type | Description |
---|---|
Char | The upper case character. |