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?
As Hans pointed out, you'd need to use aliases. This blog post explains this in better detail.
精彩评论