tags:

views:

97

answers:

1

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.

+1  A: 

Open a resource stream and copy it's content to a FileStream. http://support.microsoft.com/kb/319292 might be what you want

CodeInChaos
I needed it in c# programaticaly
Krish
Thanks dude that what i needed
Krish