vote up 1 vote down star

I've come up against the unlikely scenario when I reference two external assemblies that both have the same namespace and type names. When I try to use the type, the compiler throws an error that it cannot resolve which one I want to use.

I see that C# offers a mechanism to use aliases for references. You can even specify these aliases via the Property window of a reference in Visual Studio 2008. How do I use this alias in my code? As I understand, I should be using the :: operator, but it fails with the following error:

CS0432 - Alias not found

The usual . operator fails as well.

In the output window I see that the compiler gets the alias passed correctly in its command line.

Any pointers on what I may be able to try next are greatly appreciated.

flag

44% accept rate
"The usual . operator fails as well." can you expand on this one? It DOES work if you type the whole namespace – Grzenio Mar 6 at 14:56

4 Answers

vote up 3 vote down check
extern alias alias1;
using alias1::Namespace;

HTH, Kent

link|flag
This can be used for a method to workaround around CS0433 ( C# compiler error ). msdn.microsoft.com/en-us/library/… – RandomNickName42 May 31 at 21:10
I just noticed, it's 1 error number from "Gortok's" question here, funny. – RandomNickName42 May 31 at 21:11
vote up 2 vote down

Try this:

extern alias asm1;
extern alias asm2;

namespace Client
{
    class Program
    {
        static void Main(string[] args)
        {
            asm1.MyNs.MyClass mc1 = null;
            asm2.MyNs.MyClass mc2 = null;
        }
    }
}

And add global,asm1 to the project reference for assembly1 and global,asm2 for assembly2

link|flag
vote up 1 vote down

I think you need to use an extern alias. Anson Horton has a good blog on this problem and how to use extern alias to fix it.

link|flag
vote up 0 vote down

When you reference some assembly in project it has default alias "global". When you add another alias for that assembly, e.g. "global, AssemblyA", you will reference it like this:

using SomeTypeAlias = AssemblyA::Company.Product.SomeType;

or:

void SomeMethod(AssemblyA::Company.Product.SomeType someType) { ... }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.