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

GetBytes() public method

Gets all bytes in the array
public GetBytes ( ) : byte[]
return byte[]
        public byte[] GetBytes()
        {
            byte[] bytes = new byte[Count];
            InnerList.CopyTo(0, bytes, 0, bytes.Length);
            return bytes;
        }