C# Class System.Windows.Forms.FileByteProvider.WriteCollection

Represents the write buffer class
Inheritance: System.Collections.DictionaryBase
Show file Open project: Zepheus/Fiesta_Utils

Public Methods

Method Description
Add ( long index, byte value ) : void

Adds a byte into the collection

Contains ( long index ) : bool

Determines if a byte with the given index exists.

this ( long index ) : byte

Gets or sets a byte in the collection

Method Details

Add() public method

Adds a byte into the collection
public Add ( long index, byte value ) : void
index long the index of the byte
value byte the value of the byte
return void

Contains() public method

Determines if a byte with the given index exists.
public Contains ( long index ) : bool
index long the index of the byte
return bool

this() public method

Gets or sets a byte in the collection
public this ( long index ) : byte
index long
return byte