vote up 1 vote down star

I've used .resx files in the past to store text files and other things - queries for example. It works great because I can say Resources.Queries.BlahQuery. (Yes, I know we should probably used stored procedures, but that's another story...)

I'll never be doing any localization on these resources.

Is this a bad idea? Am I misusing .NET resource files?

flag

Your queries are resources so no, you aren't misusing them. Even if your application was english only then storing all the messages in the resources still makes sense as you may need to translate it later and the overhead is minimal. – Lazarus Oct 14 at 16:01

1 Answer

vote up 2 vote down check

I wouldn't say that you misuse them. Perhaps you don't use their full potential, but that is not the same as misusing them. Their name indicate what they are for; storing resources that the code uses. It may be that you want to localize these resources, so there are convenient mechanisms for doing so. But not doing so is not to be considered a misuse. Not by me anyway.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.