Skip to content
jamesfoster edited this page Feb 3, 2012 · 1 revision

The ConcatStream is used to join several streams together.

using(var concatStream = new ConcatStream(stream1, stream2, stream3))
{
  concatStream.CopyTo(output);
}
Clone this wiki locally