英語で読む

次の方法で共有


コンパイラ エラー CS0527

インターフェイス リストの型 'type' はインターフェイスではありません

struct または interface は、別のインターフェイスから継承できますが、他の型から継承することはできません。

次の例では CS0527 が生成されます。

// CS0527.cs  
// compile with: /target:library  
public struct clx : int {}   // CS0527 int not an interface