How to read ".txt" resource files

J

John Layton

Hi there,

Does anyone know if there's a built-in way to read a ".txt" based resources
file (one that's converted to a ".resources" file by "resgen.exe" at build
time). I need to read/write the ".txt" file directly. Thanks.in advance.
 
N

Nicholas Paldino [.NET/C# MVP]

John,

You don't want to use resource files for this. Resources are meant to
be read-only at run-time. Since you have the need to write to the file, you
should keep these files outside of your application, or in a resource
manager that allows you to write to it.

Hope this helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top