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
What is the namespace for the thread class?
How do I simulate optional parameters to com calls?
Why delegates are type safe?
What are primitive data types in c#?
What does console readkey do in c#?
Explain About a class access specifiers and method access specifiers.
Is list passed by reference c#?
What is check/uncheck?
What is a private class in c#?
What is ienumerable t in c#?
What is an array of arrays called?
How can I check the type of an object at runtime?
What are "class access modifiers" in C#?
Why are strings immutable in c#?
What is an assembly in dotnet?