You can easliy alias a namespace in .NET by doing the following: using System;using System.Text;using myXml = System.Xml; // <-- myXml is the alias. Then in the code you can reference it like …
Continue Reading about Namespace Aliasing – The using directive →