I'm working on a large asp.net maintenance application that has
numerous utilities. There can be multiple files associated with a
particular utility.
The Namespace standard is CompanyName.AppName.UtilityName
The root namespace is CompanyName.AppName
I'd like to group multiples files under a common namespace - contants,
classes, aspx pages.
The problem is if I use the same name space, then classes outside of
the current class cannot be seen.
Example:
MyUtil.aspx
-----------------
Namespace MyUtil
class MyUtilWork
{class definition stuff}
MyUtilConstants.vb
-----------------
Namespace MyUtil
class MyUtilConstants
{class definition stuff}
The problem is that if I'm inside of MyUtilWork, I'm not able to see
MyUtilConstants. Is this from Namespace clashing?
Thanks in advance,
Gabe |