public static enum?

  • Thread starter Thread starter jim
  • Start date Start date
J

jim

I have a configuration class which a handful of enum's that I want to
access from another assembly/project. Is this possible?
 
jim said:
I have a configuration class which a handful of enum's that I want to
access from another assembly/project. Is this possible?

Absolutely. Are you having any problems?
 
Yes, best of all, you do not have to specify it or the containing class(s) as
static, they all simply need to be public and the assembly containing the
class be referenced by your main application.

Brendan
 
Back
Top