For better readability, C# provides a way to shorten the namespaces with an alias.
Please see below for an example:
using ExcelInterop = Microsoft.Office.Interop.Excel;
var excelInteropApplication = new ExcelInterop.Application();
Language: .NET, Expertise: Intermediate - See how C# provides a way to shorten the namespaces for better readability.
For better readability, C# provides a way to shorten the namespaces with an alias.
Please see below for an example:
using ExcelInterop = Microsoft.Office.Interop.Excel;
var excelInteropApplication = new ExcelInterop.Application();