-
Notifications
You must be signed in to change notification settings - Fork 35
T_CodeJam_Strings_CharExtensions
Andrew Koryavchenko edited this page Jun 17, 2018
·
7 revisions
CharExtensions ClassChar structure extensions.
System.Object
CodeJam.Strings.CharExtensions
Namespace: CodeJam.Strings
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static class CharExtensions
VB
<ExtensionAttribute>
Public NotInheritable Class CharExtensions
F#
[<AbstractClassAttribute>]
[<SealedAttribute>]
[<ExtensionAttribute>]
type CharExtensions = class end
The CharExtensions type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() |
IsControl | Indicates whether a Unicode character is categorized as a control. |
![]() ![]() |
IsDigit | Indicates whether a Unicode character is categorized as a digit. |
![]() ![]() |
IsHighSurrogate | Indicates whether a Unicode character is categorized as a highsurrogate. |
![]() ![]() |
IsLetter | Indicates whether a Unicode character is categorized as a letter. |
![]() ![]() |
IsLetterOrDigit | Indicates whether a Unicode character is categorized as a letterordigit. |
![]() ![]() |
IsLower | Indicates whether a Unicode character is categorized as a lower. |
![]() ![]() |
IsLowSurrogate | Indicates whether a Unicode character is categorized as a lowsurrogate. |
![]() ![]() |
IsNumber | Indicates whether a Unicode character is categorized as a number. |
![]() ![]() |
IsPunctuation | Indicates whether a Unicode character is categorized as a punctuation. |
![]() ![]() |
IsSeparator | Indicates whether a Unicode character is categorized as a separator. |
![]() ![]() |
IsSurrogate | Indicates whether a Unicode character is categorized as a surrogate. |
![]() ![]() |
IsSymbol | Indicates whether a Unicode character is categorized as a symbol. |
![]() ![]() |
IsUpper | Indicates whether a Unicode character is categorized as a upper. |
![]() ![]() |
IsWhiteSpace | Indicates whether a Unicode character is categorized as a whitespace. |
![]() ![]() |
ToLower(Char) | Converts the value of a Unicode character to its lowercase equivalent. |
![]() ![]() |
ToLower(Char, CultureInfo) | Converts the value of a Unicode character to its lowercase equivalent. |
![]() ![]() |
ToLowerInvariant | Converts the value of a Unicode character to its lowercase equivalent using the casing rules of the invariant culture. |
![]() ![]() |
ToUpper(Char) | Converts the value of a Unicode character to its uppercase equivalent. |
![]() ![]() |
ToUpper(Char, CultureInfo) | Converts the value of a Unicode character to its uppercase equivalent. |
![]() ![]() |
ToUpperInvariant | Converts the value of a Unicode character to its uppercase equivalent using the casing rules of the invariant culture. |