TwentyTwenty.Storage.Amazon.Test.Extensions.AsStream C# (CSharp) Method

AsStream() public static method

public static AsStream ( this bytes ) : Stream
bytes this
return System.IO.Stream
        public static Stream AsStream(this byte[] bytes)
        {
            return new MemoryStream(bytes);
        }
    }
Extensions