System.Windows.Forms.ByteCollection.Insert C# (CSharp) Method

Insert() public method

Inserts a byte to the collection.
public Insert ( int index, byte b ) : void
index int the index
b byte a byte to insert
return void
        public void Insert(int index, byte b)
        {
            InnerList.Insert(index, b);
        }