Be.Windows.Forms.FileByteProvider.WriteByte C# (CSharp) Method

WriteByte() public method

Writes a byte into write buffer
public WriteByte ( long index, byte value ) : void
index long
value byte
return void
        public void WriteByte(long index, byte value)
        {
            if(_writes.Contains(index))
                _writes[index] = value;
            else
                _writes.Add(index, value);

            OnChanged(EventArgs.Empty);
        }