I had a problem trying to figure out how to properly name my namespace. Currently my namespace is:
<CompanyName>.<ProductName>.Configuration
However, the use of "Config" conflicts with:
System.Configuration
To make matters worse, I also have a ConfigurationManager class. I know that I can change it to something like:
<CompanyName>.<ProductName>.<ProductName>Configuration
but it seems redundant. Any ideas?
EDIT: Also, I know that when I call any class, I can fully qualify the call code, but the frequency that the classes will use in the System.Configuration and <CompanyName>.<ProductName>.Configuration will do for the ugly code.
EDIT2: Providing Specifics:
Using operators:
using System.Configuration; using SummitConfiguration = SST.Summit.Configuration;
Problem line Configuration config = ConfigurationManager.OpenExeConfiguration (ConfigurationUserLevel.PerUserRoamingAndLocal);
The error message "SST.Summit.Configuration" is a "namespace" but is used as a "type" (for the problem line above)
source share