Be.Windows.Forms.FileByteProvider.WriteByte C# (CSharp) Méthode

WriteByte() public méthode

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

            OnChanged(EventArgs.Empty);
        }