0

我已经打开了带有反射器的程序集,并将一些 .resources 文件保存到我的硬盘上。那里有一些位图,我怎样才能从保存的 .resources 文件中获取它们?我想通过代码或某些程序将它们保存为图像(.bmp)文件。

4

2 回答 2

1

检查这个http://support.microsoft.com/kb/324567

或者检查这个

using System.Resources;
using System.Reflection;

ResourceManager rm = new ResourceManager("YourProgramName.ProgramResources",
Assembly.GetExecutingAssembly());

rm.GetObject("my_icon_name");
于 2010-05-17T09:26:09.647 回答
0

您可以尝试使用PowerCommands for Reflector并将资源保存为 .resx 文件 - 然后在 Visual Studio 中打开它。

于 2010-05-17T10:07:03.877 回答