Creating an alias : NameSpace « Language Basics « C# / C Sharp






Creating an alias


using System;
using MyAlias=MyNamespace.Nested.MyClass;

namespace MyNamespace {
  namespace Nested {
       namespace MyClass {
             public class Foo
             {
                  int _Value;
                  public Foo() {
                    _Value = 0;
                  }
                  public int getValue()
                  {
                    return _Value;
                  }
             }
       }
  }
}


class Test {
  public static void Main() {
      MyAlias.Foo myFoo = new MyAlias.Foo();
      Console.WriteLine("Value {0}", myFoo.getValue());
  }
}

           
       








Related examples in the same category

1.Using the alias keyword to refer to a nested namespace
2.Define an alias to represent a namespace
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