namespace MyApp
{
public static class System
{
public static void Main()
{
global::System.Console.WriteLine("Hello, world!");
// if we had just used System.Console.WriteLine,
// the compile would think that we referred to a
// class named "Console" inside our "System" class.
}
}
}
global không làm việc trong tình huống sau đây, tuy nhiên, như lớp System
của ta không có một không gian tên:
public static class System
{
public static void Main()
{
global::System.Console.WriteLine("Hello, world!");
// "System" doesn't have a namespace, so the above
// would be referring to this class!
}
}
0 comments:
Đăng nhận xét