Can we clone a Stream?
|
No, streams usually refer to local resources of some kind (a socket, a file handle, etc) and so they can't be cloned or serialized. Furthermore many streams are forward-only and do not support seeking so you might not even be able to re-read from a stream. What you can do from a readable stream though is copy it into a MemoryStream which can be moved around as a byte array. See the following post for a code snippet showing how to do this: http://stackoverflow.com/questions/230128/best-way-to-copy-between-two-stream-instances-c
|
|||||||
|
|
No. Cloning is not a generally supported operation on the This may be doable for items like a |
|||
|