This method of the IStream Interface creates a new stream object with its own seek pointer that references the same bytes as the original stream.
public IStream Clone();
Returns the new stream object.
Because both the original object and its clone access the same data, changes written to one object are immediately visible in the other.