C# 클래스 Utility.BaseTypes.Character

파일 보기 프로젝트 열기: aistrate/RegexParser

공개 메소드들

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