共用方式為


編譯器錯誤 CS1681

更新:2007 年 11 月

錯誤訊息

您不能重新定義全域外部別名

已定義全域別名包括所有無別名參考,因此無法重新定義。

範例

下列範例會產生 CS1681。

// CS1681.cs
// compile with: /reference:global=System.dll
// CS1681 expected

// try this instead: /reference:System.dll
class A
{
   static void Main() {}
}