C# 클래스 SystemEx.CharEx

Contains utility methods to work with characters.
파일 보기 프로젝트 열기: pvginkel/SystemEx 1 사용 예제들

공개 메소드들

메소드 설명
FromHex ( string value ) : char
FromOct ( string value ) : char
HexToInt ( char value ) : int

Converts a hexadecimal character to its integer value.

IsHex ( char value ) : bool

Test whether a character is a hexadecimal character.

IsOct ( char c ) : bool

메소드 상세

FromHex() 공개 정적인 메소드

public static FromHex ( string value ) : char
value string
리턴 char

FromOct() 공개 정적인 메소드

public static FromOct ( string value ) : char
value string
리턴 char

HexToInt() 공개 정적인 메소드

Converts a hexadecimal character to its integer value.
public static HexToInt ( char value ) : int
value char The character to convert to an integer.
리턴 int

IsHex() 공개 정적인 메소드

Test whether a character is a hexadecimal character.
public static IsHex ( char value ) : bool
value char The character to test.
리턴 bool

IsOct() 공개 정적인 메소드

public static IsOct ( char c ) : bool
c char
리턴 bool