System.Windows.Forms.DynamicByteProvider.WriteByte C# (CSharp) Method

WriteByte() public method

Write a byte into the byte collection.
public WriteByte ( long index, byte value ) : void
index long the index of the byte to write.
value byte the byte
return void
        public void WriteByte(long index, byte value)
        {
            _bytes[(int)index] = value;
            OnChanged(EventArgs.Empty);
        }