tags:

views:

146

answers:

2

hi

when developing a project by vb6, we created a module and put every project-wide constant in it.

Now, by using c#, how can we manage project-wide constants?

+3  A: 

Put them in a static class.

If you need this class referenced in many solutions create a project in which you put this class. Add references to it.

Victor Hurdugaci
And don't forget about enums to put related constants into a container.
0xA3
A: 
smv