C# 클래스 KMotion_dotNet.HexEncoding

Helper class for working with hex-binary stack objects
파일 보기 프로젝트 열기: parhansson/KMotionX

공개 메소드들

메소드 설명
GetByteCount ( string hexString ) : int

Counts the byte length of a Hex value

GetBytes ( string hexString, int &discarded ) : byte[]

Creates a byte array from the hexadecimal string. Each two characters are combined to create one byte. First two hexadecimal characters become first byte in returned array. Non-hexadecimal characters are ignored.

HexEncoding ( ) : System

Default constructor for HexEncoding

InHexFormat ( string hexString ) : bool

Determines if given string is in proper hexadecimal string format

IsHexDigit ( Char c ) : bool

Returns true is c is a hexadecimal digit (A-F, a-f, 0-9)

ToString ( byte bytes ) : string

Converts an array of bytes to a hexidecimal value represented by a string

비공개 메소드들

메소드 설명
HexToByte ( string hex ) : byte

Converts 1 or 2 character string into equivalant byte value

메소드 상세

GetByteCount() 공개 정적인 메소드

Counts the byte length of a Hex value
public static GetByteCount ( string hexString ) : int
hexString string Hex number in string format
리턴 int

GetBytes() 공개 정적인 메소드

Creates a byte array from the hexadecimal string. Each two characters are combined to create one byte. First two hexadecimal characters become first byte in returned array. Non-hexadecimal characters are ignored.
public static GetBytes ( string hexString, int &discarded ) : byte[]
hexString string string to convert to byte array
discarded int number of characters in string ignored
리턴 byte[]

HexEncoding() 공개 메소드

Default constructor for HexEncoding
public HexEncoding ( ) : System
리턴 System

InHexFormat() 공개 정적인 메소드

Determines if given string is in proper hexadecimal string format
public static InHexFormat ( string hexString ) : bool
hexString string
리턴 bool

IsHexDigit() 공개 정적인 메소드

Returns true is c is a hexadecimal digit (A-F, a-f, 0-9)
public static IsHexDigit ( Char c ) : bool
c Char Character to test
리턴 bool

ToString() 공개 정적인 메소드

Converts an array of bytes to a hexidecimal value represented by a string
public static ToString ( byte bytes ) : string
bytes byte byte array
리턴 string