Click here to Skip to main content
15,886,665 members
Articles / Programming Languages / C#
Tip/Trick

Ambiguous Classes in C#

Rate me:
Please Sign up or sign in to vote.
4.97/5 (28 votes)
18 Dec 2014CPOL 26.9K   24   2
Ambiguous classes in C#

Originally posted on: http://geekswithblogs.net/bconlon/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 .NET compiler 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

 
QuestionBuild error Pin
demouser74321-Dec-14 16:51
demouser74321-Dec-14 16:51 
Hi I have create as suggested but I am getting the following build errors can you help me

Invalid extern alias for '/reference'; '‘global' is not a valid identifier Invalid extern alias for '/reference'; 'myalias’' is not a valid identifier The extern alias 'myalias' was not specified in a /reference option
Dorababu
http://dorababu-meka.blogspot.in/

QuestionMy Vote of 5 !! Pin
Praneet Nadkar19-Dec-14 1:12
Praneet Nadkar19-Dec-14 1:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.