使用英语阅读

通过


编译器错误 CS1681

不能重新定义全局外部别名

全局别名已定义为包括所有非别名引用,因此无法重新定义。

示例

下面的示例生成 CS1681。

// CS1681.cs  
// compile with: /reference:global=System.dll  
// CS1681 expected  
  
// try this instead: /reference:System.dll  
class A  
{  
   static void Main() {}  
}