[Mono-list] test-54.cs
Radek Doulík
rodo@ximian.com
08 Dec 2001 19:27:01 -0500
--=-JEy2MbQCP2C++zzPDDCW
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
Ops, here it is.
--=-JEy2MbQCP2C++zzPDDCW
Content-Disposition: attachment; filename=test-54.cs
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain; charset=ISO-8859-2
using c =3D System.Console;
using s =3D System;
namespace A {
namespace B {
class C {
public static void Hola () {
c.WriteLine ("Hola!");
}
}
}
}
namespace X {
namespace Y {
namespace Z {
class W {
public static void Hello () {
s.Console.WriteLine ("Ahoj!");
}
}
}
}
}
class App {
public static int Main () {
A.B.C.Hola ();
X.Y.Z.W.Hello ();
return 0;
}
}
--=-JEy2MbQCP2C++zzPDDCW--