System.Windows.Forms.ByteCollection.Insert C# (CSharp) 메소드

Insert() 공개 메소드

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