I'm developing a VB.NET solution. So far, I'm doing all of my development under one project. I'm currently contemplating modularizing by the solution by maybe doing any further develepment on seperate projects.
Here's my question: There are certain constants I want accessible to all the projects, such as connections strings.
I don't want to have to keep re-declaring whenever I create a new class or new form.
Where do I declare it?
If you say, "solution namespace", how do I access that?
I've already know if declare them in a class, I have to use the complete namespace of that class to access the public constant in another class.
Thoughts?
- mongril
Here's my question: There are certain constants I want accessible to all the projects, such as connections strings.
I don't want to have to keep re-declaring whenever I create a new class or new form.
Where do I declare it?
If you say, "solution namespace", how do I access that?
I've already know if declare them in a class, I have to use the complete namespace of that class to access the public constant in another class.
Thoughts?
- mongril