Which of the following members can C# interface have? 1. Method 2. Property 3. Event 4. Enum 5. struct
Interface cannot have type definition. So defining class, struct, enum is not allowed in an interface.