我想从我的源代码中提取嵌入式资源。
为此,我使用编译器:
CompilerParameters CP = new CompilerParameters();
[...code...]
CP.EmbeddedResources.Add(@"C:\WindowsFormsApp3.exe");
现在,我的文件中有ressource:with the ressource
但我如何提取呢?我使用这个主题:How to Read an embedded resource as array of bytes without writing it to disk? 但它不起作用,我的文件夹中没有任何内容:/
所以,如果你能帮助我,我想在文件夹中提取资源。
谢谢你。