User397347636 posted
Yes - you can use 'Import aliases' for this:
For example,
Imports Foo = System.Windows.Forms.Form
is equivalent to the following C++ typedef:
typedef System::Windows::Forms::Form Foo;
e.g., you can now use "Foo" rather than "System.Windows.Forms.Form" throughout the file.