odiseh
odiseh

Reputation: 26517

Using C#, How to access to a resource file (.resx) and read from a text file added to it?

I've added a resource file to my project called CrpResource.resx . Then, after adding a text file to the resource file, I wanna to access to it and read from it by code.

any suggestion please.

Upvotes: 0

Views: 8010

Answers (2)

Jason Williams
Jason Williams

Reputation: 57902

@Brij has provided the core of the answer.

However, the difficult bit here is knowing what the resource name is - it's not always easy after embedding a file as a resource to work out its fully qualified name.

An easy way to find out is to add this line temporarily to your code:

string[] names = Assembly.GetExecutingAssembly().GetManifestResourceNames();

Then run the program, and you can view the 'names' list of all available resources in the debugger.

Upvotes: 2

Brij
Brij

Reputation: 6122

 _assembly = Assembly.GetExecutingAssembly();
 _textStreamReader = new StreamReader(_assembly.GetManifestResourceStream("MyNamespace.MyTextFile.txt"));

See following:
http://support.microsoft.com/kb/319292

Upvotes: 1

Related Questions