Avoiding Ambiguities

You might have situations in which you need to access objects with the same name, coming from different namespaces. For example, both Windows Forms and Windows Presentation Foundation technologies provide a MessageBox class. In interoperability scenarios, where you have both references to Windows Forms and WPF assemblies, invoking such objects could result in ambiguities. Consider the following code:

Imports System.Windows.Forms'The following is a project-level Imports and only added for demo purposesImports System.WindowsClass Window1    Public Sub MyMethod()        MessageBox.Show("")    End SubEnd Class

Both System.Windows and System.Windows.Forms namespaces expose a MessageBox class, but ...

Get Visual Basic 2015 Unleashed now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.