从已编译的源中提取资源

时间:2017-08-10 20:06:49

标签: c# resources

我想从我的源代码中提取嵌入式资源。

为此,我使用编译器:

CompilerParameters CP = new CompilerParameters();
 [...code...]

CP.EmbeddedResources.Add(@"C:\WindowsFormsApp3.exe");

My ressource + the source.txt

现在,我的文件中有ressource:with the ressource

但我如何提取呢?我使用这个主题:How to Read an embedded resource as array of bytes without writing it to disk? 但它不起作用,我的文件夹中没有任何内容:/

所以,如果你能帮助我,我想在文件夹中提取资源。

谢谢你。

0 个答案:

没有答案