I'm trying to read an embedded text file with System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(resource); but it gives me a Stream. The embedded resource is a text file so, how can I turn this Stream into a TextReader?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
A
|
||||
|
You can read your resource file like this :
|
|||||
|
|
|
You need to get a StreamReader from it (TextReader is an abstract base class of StreamReader and StringReader). Something like:
|
||||
|
|
