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;
        }