Method |
Description |
|
AsString ( this chars ) : string |
|
|
IsDigit ( this c ) : bool |
|
|
IsHexDigit ( this c ) : bool |
|
|
IsLetter ( this c ) : bool |
|
|
IsOctDigit ( this c ) : bool |
|
|
JoinStrings ( this strings ) : string |
|
|
JoinStrings ( this strings, string separator ) : string |
|
|
Show ( this c ) : string |
Converts a character into C# character-literal format (ready to be pasted into a program), including the single quotes. |
|
ShowLitChar ( this c ) : string |
|
|
ShowVerbatim ( this s ) : string |
Converts a string into C# *verbatim* string-literal format (ready to be pasted into a program), including the double quotes. Verbatim string literals start with a '@' character (before the opening quote). |
|