編譯器錯誤 CS0524
'type': 介面不能宣告類型
interface 不能包含使用者定義的類型;它應該只包含方法和屬性。
下列範例會產生 CS0524:
// CS0524.cs
public interface Clx
{
public class Cly // CS0524, delete user-defined type
{
}
}
'type': 介面不能宣告類型
interface 不能包含使用者定義的類型;它應該只包含方法和屬性。
下列範例會產生 CS0524:
// CS0524.cs
public interface Clx
{
public class Cly // CS0524, delete user-defined type
{
}
}