C# 클래스 Miracle.FileZilla.Api.Hex

Hex dump helper class (Tip: Use Hex.Dump(variable) in QuickWatch)
파일 보기 프로젝트 열기: PolarbearDK/Miracle.FileZilla.Api

공개 메소드들

메소드 설명
Dump ( byte bytes, int maxLength = int.MaxValue ) : string

Hex dump byte array and return result as string

Dump ( TextWriter writer, byte bytes, int maxLength = int.MaxValue ) : void

Hex dump byte array to Text writer

메소드 상세

Dump() 공개 정적인 메소드

Hex dump byte array and return result as string
public static Dump ( byte bytes, int maxLength = int.MaxValue ) : string
bytes byte Data to dump as hex
maxLength int Optional max bytes to dump
리턴 string

Dump() 공개 정적인 메소드

Hex dump byte array to Text writer
public static Dump ( TextWriter writer, byte bytes, int maxLength = int.MaxValue ) : void
writer System.IO.TextWriter Text writer to write hex dump to
bytes byte Data to dump as hex
maxLength int Optional max bytes to dump
리턴 void