System Namespace
Represents a Unicode character.
Visibility |
Name |
Parameters |
Return Type |
public |
CompareTo |
(
Char
value
)
|
Int32
|
public |
CompareTo |
(
Object
value
)
|
Int32
|
public static |
ConvertFromUtf32 |
(
Int32
utf32
)
|
String
|
public static |
ConvertToUtf32 |
(
Char
highSurrogate
,
Char
lowSurrogate
)
|
Int32
|
public static |
ConvertToUtf32 |
(
String
s
,
Int32
index
)
|
Int32
|
public |
Equals |
(
Object
obj
)
|
Boolean
|
public |
Equals |
(
Char
obj
)
|
Boolean
|
public |
GetHashCode |
( )
|
Int32
|
public static |
GetNumericValue |
(
String
s
,
Int32
index
)
|
Double
|
public static |
GetNumericValue |
(
Char
c
)
|
Double
|
public |
GetTypeCode |
( )
|
TypeCode
|
public static |
GetUnicodeCategory |
(
String
s
,
Int32
index
)
|
UnicodeCategory
|
public static |
GetUnicodeCategory |
(
Char
c
)
|
UnicodeCategory
|
public static |
IsControl |
(
String
s
,
Int32
index
)
|
Boolean
|
public static |
IsControl |
(
Char
c
)
|
Boolean
|
public static |
IsDigit |
(
String
s
,
Int32
index
)
|
Boolean
|
public static |
IsDigit |
(
Char
c
)
|
Boolean
|
public static |
IsHighSurrogate |
(
String
s
,
Int32
index
)
|
Boolean
|
public static |
IsHighSurrogate |
(
Char
c
)
|
Boolean
|
public static |
IsLetter |
(
Char
c
)
|
Boolean
|
public static |
IsLetter |
(
String
s
,
Int32
index
)
|
Boolean
|
public static |
IsLetterOrDigit |
(
String
s
,
Int32
index
)
|
Boolean
|
public static |
IsLetterOrDigit |
(
Char
c
)
|
Boolean
|
public static |
IsLower |
(
String
s
,
Int32
index
)
|
Boolean
|
public static |
IsLower |
(
Char
c
)
|
Boolean
|
public static |
IsLowSurrogate |
(
String
s
,
Int32
index
)
|
Boolean
|
public static |
IsLowSurrogate |
(
Char
c
)
|
Boolean
|
public static |
IsNumber |
(
Char
c
)
|
Boolean
|
public static |
IsNumber |
(
String
s
,
Int32
index
)
|
Boolean
|
public static |
IsPunctuation |
(
String
s
,
Int32
index
)
|
Boolean
|
public static |
IsPunctuation |
(
Char
c
)
|
Boolean
|
public static |
IsSeparator |
(
Char
c
)
|
Boolean
|
public static |
IsSeparator |
(
String
s
,
Int32
index
)
|
Boolean
|
public static |
IsSurrogate |
(
Char
c
)
|
Boolean
|
public static |
IsSurrogate |
(
String
s
,
Int32
index
)
|
Boolean
|
public static |
IsSurrogatePair |
(
Char
highSurrogate
,
Char
lowSurrogate
)
|
Boolean
|
public static |
IsSurrogatePair |
(
String
s
,
Int32
index
)
|
Boolean
|
public static |
IsSymbol |
(
String
s
,
Int32
index
)
|
Boolean
|
public static |
IsSymbol |
(
Char
c
)
|
Boolean
|
public static |
IsUpper |
(
Char
c
)
|
Boolean
|
public static |
IsUpper |
(
String
s
,
Int32
index
)
|
Boolean
|
public static |
IsWhiteSpace |
(
Char
c
)
|
Boolean
|
public static |
IsWhiteSpace |
(
String
s
,
Int32
index
)
|
Boolean
|
public static |
Parse |
(
String
s
)
|
Char
|
public static |
ToLower |
(
Char
c
,
CultureInfo
culture
)
|
Char
|
public static |
ToLower |
(
Char
c
)
|
Char
|
public static |
ToLowerInvariant |
(
Char
c
)
|
Char
|
public static |
ToString |
(
Char
c
)
|
String
|
public |
ToString |
( )
|
String
|
public |
ToString |
(
IFormatProvider
provider
)
|
String
|
public static |
ToUpper |
(
Char
c
)
|
Char
|
public static |
ToUpper |
(
Char
c
,
CultureInfo
culture
)
|
Char
|
public static |
ToUpperInvariant |
(
Char
c
)
|
Char
|
public static |
TryParse |
(
String
s
,
Char&
result
)
|
Boolean
|
|
The Char value type represents Unicode characters with values ranging from hexadecimal 0x0000 to 0xFFFF.
Char provides methods to compare instances of this type, convert the value of an instance to its String representation, convert the String representation of a number to an instance of this type, and determine whether an instance is in a category such as digit, letter, punctuation, control character, and so on.
For information about how format specification codes control the String representation of value types, see Formatting Base Types.
For more information about Unicode, see the Unicode Standard at http://www.unicode.org.
This type implements interfaces IComparable and IConvertible. Use the Convert class for conversions instead of this type's explicit interface member implementation of IConvertible.
IComparable IConvertible
|
|