C# Класс Miracle.FileZilla.Api.Hex

Hex dump helper class (Tip: Use Hex.Dump(variable) in QuickWatch)
Показать файл Открыть проект

Открытые методы

Метод Описание
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