I have a plenty of them of different form and types. Of course I will not store a bitmap as const, and I know about localization strings, but what should I do with other constants?

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

Put constants that relates to UI display in resources.
Put "constants" relating to application configuration like connection strings in app.config
Put constants that relates to program flow in c# classes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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