Krish
Krish

Reputation: 137

Extracting .NET Resources to a File

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.

Upvotes: 0

Views: 3334

Answers (1)

CodesInChaos
CodesInChaos

Reputation: 108790

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

Upvotes: 1

Related Questions