C# Class Selenol.Extensions.StringExtensions

The string extensions.
Afficher le fichier Open project: pbakshy/Selenol

Méthodes publiques

Méthode Description
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[]).

Method Details

F() public static méthode

Formats string with CultureInfo.CurrentCulture.
public static F ( this format ) : string
format this The format.
Résultat string

FInv() public static méthode

Formats string with CultureInfo.InvariantCulture.
public static FInv ( this format ) : string
format this The format.
Résultat string

IsNullOrEmpty() public static méthode

Extension method for string.IsNullOrEmpty.
public static IsNullOrEmpty ( this value ) : bool
value this The value.
Résultat bool

Join() public static méthode

Extension method for string.Join(string,string[]).
public static Join ( this values, string separator ) : string
values this The strings.
separator string The separator.
Résultat string