The title should say it all…
EDIT: Apparently the title didn’t say it all, but Jon Skeet was able to figure out what I meant anyway!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Assuming you mean you want to refer to types in the same namespace (or even the same fully qualified type name) provided by two different assemblies, you can do this from C# 2 and up using extern aliases.
Ideally you should try to avoid getting into this situation, but you can do it if you really, really need to.
Anson Horton has a blog post about extern aliases and using them from Visual Studio.