J jim Jul 29, 2005 #1 I have a configuration class which a handful of enum's that I want to access from another assembly/project. Is this possible?
I have a configuration class which a handful of enum's that I want to access from another assembly/project. Is this possible?
J Jon Skeet [C# MVP] Jul 29, 2005 #2 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? Click to expand... Absolutely. Are you having any problems?
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? Click to expand... Absolutely. Are you having any problems?
G Guest Jul 29, 2005 #3 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
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