System.IO.StreamExtensions.ToStream C# (CSharp) Method

ToStream() public static method

public static ToStream ( this body ) : Stream
body this
return Stream
		public static Stream ToStream(this byte[] body)
		{
			return new MemoryStream(body);
		}
	}