System.Windows.Forms.ByteCollection.CopyTo C# (CSharp) Méthode

CopyTo() public méthode

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