本文介绍了从流中获取一个TextReader的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想读嵌入式文本文件System.Reflection.Assembly.GetExecutingAssembly()GetManifestResourceStream(资源);
,但它给了我一个流
。嵌入的资源是一个文本文件,所以,我怎么可以把这个流
到的TextReader
?
解决方案
的TextReader TR =新的StreamReader(流);
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
?
解决方案
TextReader tr = new StreamReader(stream);
这篇关于从流中获取一个TextReader的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!