C# Класс Selenol.Extensions.StringExtensions

The string extensions.
Показать файл Открыть проект

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

Метод Описание
F ( this format ) : string

Formats string with CultureInfo.CurrentCulture.

FInv ( this format ) : string

Formats string with CultureInfo.InvariantCulture.

IsNullOrEmpty ( this value ) : bool

Extension method for string.IsNullOrEmpty.

Join ( this values, string separator ) : string

Extension method for string.Join(string,string[]).

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

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

Formats string with CultureInfo.CurrentCulture.
public static F ( this format ) : string
format this The format.
Результат string

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

Formats string with CultureInfo.InvariantCulture.
public static FInv ( this format ) : string
format this The format.
Результат string

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

Extension method for string.IsNullOrEmpty.
public static IsNullOrEmpty ( this value ) : bool
value this The value.
Результат bool

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

Extension method for string.Join(string,string[]).
public static Join ( this values, string separator ) : string
values this The strings.
separator string The separator.
Результат string