共用方式為


編譯器警告 (層級 2) CS0440

更新:2007 年 11 月

錯誤訊息

最好不要定義名為 'global' 的別名,因為 'global::' 必定會去參考全域命名空間,不會去參考別名

當您定義名為 global 的別名,便會發出這個警告。

範例

下列範例會產生 CS0040:

// CS0440.cs
// Compile with: /W:1

using global = MyClass;   // CS0440
class MyClass
{
    static void Main()
    {
        // Note how global refers to the global namespace
        // even though it is redefined above.
        global::System.Console.WriteLine();
    }
}