C# 클래스 Stumps.HexExtensionMethods

A class that provides a conversion between byte arrays an a HEX representation.
파일 보기 프로젝트 열기: Cayan-LLC/stumps

공개 메소드들

메소드 설명
ToByteArray ( this hexValue ) : byte[]

Converts a hex-encoded string into a byte array.

ToHexString ( this byteArray ) : string

Converts a byte array into a hex-encoded string.

메소드 상세

ToByteArray() 공개 정적인 메소드

Converts a hex-encoded string into a byte array.
public static ToByteArray ( this hexValue ) : byte[]
hexValue this The hex-encoded string.
리턴 byte[]

ToHexString() 공개 정적인 메소드

Converts a byte array into a hex-encoded string.
public static ToHexString ( this byteArray ) : string
byteArray this The byte array to encode.
리턴 string