Using the alias keyword to refer to a nested namespace : NameSpace « Language Basics « C# / C Sharp






Using the alias keyword to refer to a nested namespace

// 
using CmpDb = YourCompany.SecondPartNamespace.InnerNamespace.YourClass;

namespace YourCompany.SecondPartNamespace {
  namespace InnerNamespace {
    public class YourClass {
      public static void Open( string tblName ) {
         System.Console.WriteLine("{0}", tblName );
      }
    }
  }
}

public class CH1_14 {
  public static void Main() {
    CmpDb.Open("fred");
  }
}


           
       








Related examples in the same category

1.Define an alias to represent a namespace
2.Creating an alias
3.Namespaces are additiveNamespaces are additive
4.Namespaces can be nestedNamespaces can be nested
5.Illustrates the use of two namespacesIllustrates the use of two namespaces
6.The use of namespace hierarchies (part 1)The use of namespace hierarchies (part 1)
7.How the using statement is used to specify namespacesHow the using statement is used to specify namespaces
8.Using namespaceUsing namespace
9.Demonstrates using as a statementDemonstrates using as a statement
10.Demonstrate a namespaceDemonstrate a namespace
11.Namespaces prevent name conflictsNamespaces prevent name conflicts
12.Demonstrate a namespace 2Demonstrate a namespace 2
13.C# Namespaces and UsingC# Namespaces and Using