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

CopyTo() public method

Copies the content of the collection into the given array.
public CopyTo ( byte bs, int index ) : void
bs byte
index int
return void
        public void CopyTo(byte[] bs, int index)
        {
            InnerList.CopyTo(bs, index);
        }