System.Windows.Forms.DynamicByteProvider.WriteByte C# (CSharp) Méthode

WriteByte() public méthode

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
Résultat void
        public void WriteByte(long index, byte value)
        {
            _bytes[(int)index] = value;
            OnChanged(EventArgs.Empty);
        }