+ 1
Interface c#
Can interface contain class?
1 Resposta
+ 7
All of the methods in an interface are abstract. An interface cannot contain instance fields. The only fields that can appear in an interface must be declared both static and final. An interface is not extended by a class; it is implemented by a class.