We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Substream is equivalent to Substring. By specifying the starting position and length you can extract a section of an inner stream.
Substream
using(var substream = input.Substream(100, 200)) { concatStream.CopyTo(output); }
If the underlying stream supports seeking it will call Seek, otherwise it will read StartPosition bytes on the first read.
Seek
StartPosition