I need to extract the resources from a .NET application to a location on my hard drive. How can I do this?
eg. I have a exe file in my c# resources and i want to copy the resource file to my harddrive programaticaly.
I need to extract the resources from a .NET application to a location on my hard drive. How can I do this?
eg. I have a exe file in my c# resources and i want to copy the resource file to my harddrive programaticaly.
Open a resource stream and copy it's content to a FileStream. http://support.microsoft.com/kb/319292 might be what you want