共用方式為


編譯器錯誤 CS1537

更新:2007 年 11 月

錯誤訊息

所使用的別名 'alias' 之前曾出現於此命名空間

您將某個符號定義成命名空間別名兩次。一個符號只能定義一次。

下列範例會產生 CS1537:

// CS1537.cs
namespace x
{
   using System;
   using Object = System.Object;
   using Object = System.Object;   // CS1537, delete this line to resolve
   using System = System;
}