System.Windows.Forms.FileByteProvider.WriteCollection.Add C# (CSharp) Method

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
			public void Add(long index, byte value)
			{ Dictionary.Add(index, value); }
FileByteProvider.WriteCollection