I created a very simple application a long time ago, in dot net. Now I need to rewrite the application with some additions, but I lost the code of previous version but I have the binary file. There is some quality images in previous version as resource within assembly.
How can I retrieve those images from assembly, to be used in new version.
Thank you.
Use Reflector trial and browse to the resources folder inside the assembly. Then you can extract any resource as you wish. Right click on any resource file ans select “Save as”, which will generate a “.resources” which you can then include in your new project.