C# Class Selenol.Extensions.StringExtensions

The string extensions.
Mostra file Open project: pbakshy/Selenol

Public Methods

Method 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 method

Formats string with CultureInfo.CurrentCulture.
public static F ( this format ) : string
format this The format.
return string

FInv() public static method

Formats string with CultureInfo.InvariantCulture.
public static FInv ( this format ) : string
format this The format.
return string

IsNullOrEmpty() public static method

Extension method for string.IsNullOrEmpty.
public static IsNullOrEmpty ( this value ) : bool
value this The value.
return bool

Join() public static method

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