Mapsui.Tests.Common.SampleTileProvider.ReadFully C# (CSharp) 메소드

ReadFully() 공개 정적인 메소드

public static ReadFully ( Stream input ) : byte[]
input Stream
리턴 byte[]
        public static byte[] ReadFully(Stream input)
        {
            using (var ms = new MemoryStream())
            {
                input.CopyTo(ms);
                return ms.ToArray();
            }
        }