C# 클래스 FactomAPI.Arrays

파일 보기 프로젝트 열기: CryptidID/FactomDotNet

공개 메소드들

메소드 설명
ByteArrayToHex ( byte ba ) : string

Converts byte[] to hex string

CopyOfRange ( byte src, int start, int end ) : byte[]

Convience function to emulate Java's CopyOfRange

메소드 상세

ByteArrayToHex() 공개 정적인 메소드

Converts byte[] to hex string
public static ByteArrayToHex ( byte ba ) : string
ba byte
리턴 string

CopyOfRange() 공개 정적인 메소드

Convience function to emulate Java's CopyOfRange
public static CopyOfRange ( byte src, int start, int end ) : byte[]
src byte The byte array to copfrom
start int The index to cut from
end int The index to cut to
리턴 byte[]