編譯器錯誤 CS0179
更新:2007 年 11 月
錯誤訊息
當 'member' 為 extern 時,即無法宣告為主體
當類別成員標記為 extern 時,表示該成員的定義位於另一個檔案中。因此,標記為 extern 的類別成員無法定義於該類別中。請移除 extern 關鍵字或刪除該定義。如需詳細資訊,請參閱方法 (C# 程式設計手冊)。
下列範例會產生 CS0179:
// CS0179.cs
public class MyClass
{
public extern int ExternMethod(int aa) // CS0179
{
return 0;
}
// try the following line instead
// public extern int ExternMethod(int aa);
public static void Main()
{
}
}