views:

98

answers:

1

In a C# solution, Where do you declare solution-scope enums ?

+12  A: 

You'll need to declare them within a Project which all other projects in the solution reference.

STW
The Class Library project type, and the same answer also applies to all other language features aside from enums.
Daniel Earwicker