codeputer
codeputer

Reputation: 2028

Namespace issue

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.

Namespace Conflict

Namespace Conflict 2

Upvotes: 1

Views: 341

Answers (1)

SeeSharp
SeeSharp

Reputation: 1750

Try to use global::HotDocs.

or try:

Create alias for one of them: using myAlias = HotDocs.Server;

Upvotes: 2

Related Questions