Méthode | Description | |
---|---|---|
IsControl ( this value ) : bool |
Is the character a control character
|
|
IsDigit ( this value ) : bool |
Is the character a digit character
|
|
IsHighSurrogate ( this value ) : bool |
Is the character a high surrogate character
|
|
IsLetter ( this value ) : bool |
Is the character a letter character
|
|
IsLetterOrDigit ( this value ) : bool |
Is the character a letter or digit character
|
|
IsLowSurrogate ( this value ) : bool |
Is the character a low surrogate character
|
|
IsLower ( this value ) : bool |
Is the character a lower case character
|
|
IsNumber ( this value ) : bool |
Is the character a number character
|
|
IsPunctuation ( this value ) : bool |
Is the character a punctuation character
|
|
IsSurrogate ( this value ) : bool |
Is the character a surrogate character
|
|
IsSymbol ( this value ) : bool |
Is the character a symbol character
|
|
IsUnicode ( this input ) : bool |
Determines if a byte array is unicode
|
|
IsUpper ( this value ) : bool |
Is the character an upper case character
|
|
IsWhiteSpace ( this value ) : bool |
Is the character a whitespace character
|
|
ToBase64String ( this input ) : string |
Converts a byte array into a base 64 string
|
|
ToBool ( this input ) : bool |
Turns an int into a bool
|
|
ToEncodedString ( this input, |
Converts a byte array to a string
|
|
ToInt ( this value ) : int |
Converts the bool to an integer
|
public static IsControl ( this value ) : bool | ||
value | this | Value to check |
Résultat | bool |
public static IsDigit ( this value ) : bool | ||
value | this | Value to check |
Résultat | bool |
public static IsHighSurrogate ( this value ) : bool | ||
value | this | Value to check |
Résultat | bool |
public static IsLetter ( this value ) : bool | ||
value | this | Value to check |
Résultat | bool |
public static IsLetterOrDigit ( this value ) : bool | ||
value | this | Value to check |
Résultat | bool |
public static IsLowSurrogate ( this value ) : bool | ||
value | this | Value to check |
Résultat | bool |
public static IsLower ( this value ) : bool | ||
value | this | Value to check |
Résultat | bool |
public static IsNumber ( this value ) : bool | ||
value | this | Value to check |
Résultat | bool |
public static IsPunctuation ( this value ) : bool | ||
value | this | Value to check |
Résultat | bool |
public static IsSurrogate ( this value ) : bool | ||
value | this | Value to check |
Résultat | bool |
public static IsSymbol ( this value ) : bool | ||
value | this | Value to check |
Résultat | bool |
public static IsUnicode ( this input ) : bool | ||
input | this | Input array |
Résultat | bool |
public static IsUpper ( this value ) : bool | ||
value | this | Value to check |
Résultat | bool |
public static IsWhiteSpace ( this value ) : bool | ||
value | this | Value to check |
Résultat | bool |
public static ToBase64String ( this input ) : string | ||
input | this | Input array |
Résultat | string |
public static ToBool ( this input ) : bool | ||
input | this | Int value |
Résultat | bool |
public static ToEncodedString ( this input, |
||
input | this | input array |
encodingUsing | The type of encoding the string is using (defaults to UTF8) | |
index | int | Index to start at |
count | int | Number of bytes starting at the index to convert (use -1 for the entire array starting at the index) |
Résultat | string |
public static ToInt ( this value ) : int | ||
value | this | Value to convert |
Résultat | int |