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

CopyTo() 공개 메소드

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