Reputation: 2028
This is driving me crazy! I'm trying to get to a namespace for a thrid party control called: HotDocs.Server.Session.
My namespaces start with CCE.HotDocs.IO and CCE.HotDocs.Test.
When I type "HotDocs." I get my namespaces that start with CCE.HotDocs ? WTF? I should be getting HotDocs.Server What am I missing? I captured a couple of screen snippets to show what I mean... the second screen snippet is what is driving me crazy.
Upvotes: 1
Views: 341
Reputation: 1750
Try to use global::HotDocs.
or try:
Create alias for one of them: using myAlias = HotDocs.Server;
Upvotes: 2