Click here to Skip to main content
15,884,298 members
Articles / Programming Languages / C#

Ambiguous Classes in C#

Rate me:
Please Sign up or sign in to vote.
5.00/5 (10 votes)
25 Aug 2015CPOL 11.2K   5  
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:

C#
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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United Kingdom United Kingdom
Software developer and geek with 20 years coding experience mainly C++, C#, XML.
Please visit my developer blog: http://geekswithblogs.net/bconlon/Default.aspx

Comments and Discussions

 
-- There are no messages in this forum --