I don\'t even know if it\'s called an alias, but let me continue anyway.
You know how the System.String type in C# is sorta \"aliased\" with \"string\"? In Visual S
You create an alias using:
using alias = LongClassName;
That alias is visible in the namespace where you declared it.