I have a method that takes either a StringReader
instance (reading from the clipboard) or a StreamReader
instance (reading from a file) and, at present, casts either one as a TextReader
instance.
I need it to 'pre-read' some of the source input, then reset the cursor back to the start. I do not necessarily have the original filename. How to I do this?
There is mention of the Seek
method of System.IO.Stream
but this is not implemented in TextReader
, although it is in StreamReader
through the Basestream
property. However StringReader
does not have a BaseStream
property