System.IO.StreamExtensions.ToStream C# (CSharp) 메소드

ToStream() 공개 정적인 메소드

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