Ler em inglês

Compartilhar via


Erro do Compilador CS0527

O tipo 'type' na lista de interfaces não é uma interface

É possível que um struct ou uma interface herde de outra interface, mas não de nenhum outro tipo.

O exemplo a seguir gera o erro CS0527:

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