DeveloperInToronto
DeveloperInToronto

Reputation: 1193

duplicate namespace and function names in different assemblies

I have a project in visual studio 2010 and I'm using C# with .NetFramework 4.0. Is there a way of having two references to two dlls which have the same name, namespace and function names, but different internal implementation/logic?

Upvotes: 1

Views: 1874

Answers (1)

CodeNaked
CodeNaked

Reputation: 41393

As Hans pointed out, you'd need to use aliases. This blog post explains this in better detail.

Upvotes: 2

Related Questions