C# Класс Utility.BaseTypes.Character

Показать файл Открыть проект

Открытые методы

Метод Описание
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).

Описание методов

AsString() публичный статический Метод

public static AsString ( this chars ) : string
chars this
Результат string

IsDigit() публичный статический Метод

public static IsDigit ( this c ) : bool
c this
Результат bool

IsHexDigit() публичный статический Метод

public static IsHexDigit ( this c ) : bool
c this
Результат bool

IsLetter() публичный статический Метод

public static IsLetter ( this c ) : bool
c this
Результат bool

IsOctDigit() публичный статический Метод

public static IsOctDigit ( this c ) : bool
c this
Результат bool

JoinStrings() публичный статический Метод

public static JoinStrings ( this strings ) : string
strings this
Результат string

JoinStrings() публичный статический Метод

public static JoinStrings ( this strings, string separator ) : string
strings this
separator string
Результат string

Show() публичный статический Метод

Converts a character into C# character-literal format (ready to be pasted into a program), including the single quotes.
public static Show ( this c ) : string
c this
Результат string

ShowLitChar() публичный статический Метод

public static ShowLitChar ( this c ) : string
c this
Результат string

ShowVerbatim() публичный статический Метод

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).
public static ShowVerbatim ( this s ) : string
s this
Результат string