Tag: Namespace Alias
Using the Namespace Alias Qualifier in C#
One of the advantages of the Namespace is the organization of your code and structure . You could use the Namespace Alias Qualifier that allows the developers to replace the namespace names with the alias so that the ambigous definitions of the classes/namespaces are prevented. An sample example of the Ambigous definition os class is below using System; using System.Collections.Generic; using System.Linq; using System.Text; using…