C# Class Miracle.FileZilla.Api.Hex

Hex dump helper class (Tip: Use Hex.Dump(variable) in QuickWatch)
Mostrar archivo Open project: PolarbearDK/Miracle.FileZilla.Api

Public Methods

Method Description
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

Method Details

Dump() public static method

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
return string

Dump() public static method

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
return void