Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Ambiguous Classes in C#

0.00/5 (No votes)
25 Aug 2015 1  
Ambiguous Classes in C#

Originally posted on: http://kariem.net/archive/2014/12/18/ambiguous-classes-in-c.aspx

I recently had cause to reference two libraries which both contained the same class file. The Namespace : Class were therefore ambiguous within my application. Interestingly enough, the .NETcompiler simply takes its bat and ball home and does not allow you to access any of the exported types from these assemblies.

To resolve this, you need to create an alias for at least one of the DLLs. You do this in the Reference Properties:

  1. Add references in your app to the DLLs.
  2. Right click on one of the assembly entries in the References list and click Properties.
  3. In the properties windows, you will see an ‘Aliases’ property with the value of ‘global’. Change this to be ‘global, myalias’.

Click build and everything should be OK except when you try to use the ambiguous class, i.e., the .NET compiler will now be happy about the scope of all of the other exported items.

To use the actual ambiguous class, you need to add an extern alias:

namespace MyApp
{
    extern alias myalias;
    public class MyClass
    {
        var myClass = new myalias::AmbiguousNamespace.AmbiguousClass();
    }
}

Note: You could prefix every declaration using the ‘global::’ scope, but that is the default so we don’t need to bother.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here