C# 클래스 Selenol.Extensions.StringExtensions

The string extensions.
파일 보기 프로젝트 열기: pbakshy/Selenol

공개 메소드들

메소드 설명
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