I am working on recovering the source for an application for a client of mine. I have managed to recover the application code using .NET Reflector. But now I want to neaten
You can save the .resources
file and then use the resgen tool (part of the VS2010 tools) to convert it back into a .resx
file, using a command line like:
resgen foo.resources bar.resx
The .resx
can then be added to a C# project. Once you've done this, if you try to open the individual images, VS2010 will offer to extract them into a standalone image file.