System.Windows.Forms.ByteCollection.GetBytes C# (CSharp) Метод

GetBytes() публичный Метод

Gets all bytes in the array
public GetBytes ( ) : byte[]
Результат byte[]
        public byte[] GetBytes()
        {
            byte[] bytes = new byte[Count];
            InnerList.CopyTo(0, bytes, 0, bytes.Length);
            return bytes;
        }