Answer Posted / lakshmi
1)An Interface is a reference type and contains only
abstract members.
2)Interface contains declaration of methods, properties,
Indexers and events.
3)You can never instantiate an interface, it only contains
signature of its members.
4)An Interface has neither constructors nor fields.
5)An Interface definition also not permitted to contain
operator overloads.It is also not permitted to declare
modifiers on the members in an Interface definition.
6)An Interface members are always implicitly public and
cannot be declared as virtual or static.
Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
Explain “static” keyword in c#?
Explain the process of inheriting a class into another class?
What is string pool in c#?
What does async mean in c#?
What are data types examples?
Is there regular expression (regex) support available to c# developers?
What is the use of iqueryable in c#?
What is a partial class in c#?
How does split work in c#?
What does static mean in c sharp?
what is an event? Define delegate?
Distinguish between continue and break statement?
What is indexer c#?
What is a function c#?
Why use a singleton instead of static methods?