命名空间别名
using System;
using Introduction=Wrox.A
class Text
{
public static int Main()
{
Introduction::NamespaceExample NS=new Introduction::NamespaceExample();
Console.WriteLine(NS.GetNamespace());
return 0;
}
}
namesapce Wrox.A
{
class NamespaceExample
{
public string GetNamespace()
{
return this.GetType().Namespace;
}
}
}

浙公网安备 33010602011771号