ScrGen.Icon.IcoContainer.ToBytes C# (CSharp) Method

ToBytes() public method

public ToBytes ( bool arrange = true ) : byte[]
arrange bool
return byte[]
        public byte[] ToBytes(bool arrange = true)
        {
            using (var icoStream = new MemoryStream())
            {
                ToStream(icoStream,arrange);
                return icoStream.ToArray();
            }
        }