Using import aliasing in one file/class, we can reference class library namespaces by assigning our own custom alias like this:
\' VB
Imports Db = Company.Li
Yes this is a supported scenario in VB.Net projects. The way to do this is the following
This will set up the alias for all files in the project.
This however does not work in C# projects. C# as a language doesn't have the concept of a global using/import. Instead it only supports them at the file level.