Beispiel #1
0
 static void Main(string[] args)
 {
     first_space.namespace_cl  fc = new first_space.namespace_cl();
     second_space.namespace_cl sc = new second_space.namespace_cl();
     fc.func();
     sc.func();
 }
Beispiel #2
0
 static void Main(string[] args)
 {
    first_space.namespace_cl fc = new first_space.namespace_cl();
    second_space.namespace_cl sc = new second_space.namespace_cl();
    fc.func();
    sc.func();
    Console.ReadKey();
 }
Beispiel #3
0
 static void Main(string[] args)
 {
     first_space.namespace_cl  fc = new first_space.namespace_cl(); //creating an object
     second_space.namespace_cl sc = new second_space.namespace_cl();
     fc.func();                                                     //calling function
     sc.func();
     Console.ReadKey();
 }
Beispiel #4
0
 public void NAMESPACES_M()
 {
     Console.WriteLine("\t\t\tNamespaces");
     first_space.namespace_cl  fc = new first_space.namespace_cl();
     second_space.namespace_cl sc = new second_space.namespace_cl();
     fc.func();
     sc.func();
     Program.CheckReturnToContent();
 }