C# Класс Redzen.IO.FileByteArray

A byte array backed by a file on disk. The byte array has fixed length and random accessible as per a normal byte array, but is backed by a file rather than memory.
Наследование: IDisposable
Показать файл Открыть проект

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

Метод Описание
Dispose ( ) : void

Dispose of the FileByteArray.

FileByteArray ( string filePath ) : System

Open an existing byte array file.

FileByteArray ( string filePath, int length ) : System

Create a new byte array file with the specified length (in bytes).

this ( int idx ) : byte

Gets the byte at the specified index within the array.

Описание методов

Dispose() публичный Метод

Dispose of the FileByteArray.
public Dispose ( ) : void
Результат void

FileByteArray() публичный Метод

Open an existing byte array file.
public FileByteArray ( string filePath ) : System
filePath string The full path to the file.
Результат System

FileByteArray() публичный Метод

Create a new byte array file with the specified length (in bytes).
public FileByteArray ( string filePath, int length ) : System
filePath string The full path to the file.
length int The length of the byte array.
Результат System

this() публичный Метод

Gets the byte at the specified index within the array.
public this ( int idx ) : byte
idx int The index of the byte to retrieve from the array.
Результат byte