Be.Windows.Forms.FileByteProvider.WriteCollection.this C# (CSharp) Method

this() public method

Gets or sets a byte in the collection
public this ( long index ) : byte
index long
return byte
            public byte this[long index]
            {
                get { return (byte)this.Dictionary[index]; }
                set { Dictionary[index] = value; }
            }
FileByteProvider.WriteCollection