将Dictionary嵌入VB.NET应用程序

时间:2009-08-09 03:22:08

标签: vb.net embedded-resource

我想嵌入一个dictionary.txt,我的程序使用streamreader对象进行解析。我试图将它添加到资源,但然后streamreader出错了。如何正确完成?

由于

1 个答案:

答案 0 :(得分:1)

首先,您需要将文件嵌入到程序集中(添加到项目并转到文件的属性,并将构建操作设置为“嵌入式资源”)。

然后,您需要使用GetManifestResourceStream()访问和阅读其内容:

Getting an embedded resource file out of an assembly

这篇文章可能很有用:Microsoft .NET Framework Resource Basics