How to manage project-wide constants in a project using c#?

c#, constants

Solution

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.

Problem

When developing a project with VB6, we created a module and put every project-wide constant in it. Now, using C#, how can we manage project-wide constants?

Original source

Related problems