Answer Posted / supraja polam reddy
An interface in C# is type definition similar to a class
except that it purely represents a contract between an
object and a user of the object. An interface cannot be
directly instantiated as an object. No data members can be
defined in an interface. Methods and properties can only be
declared, not defined
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Can I call a virtual method from a constructor/destructor?
what is virtual method in c#?
What is private protected in c#?
What do you mean by a windows process in regards to memory allocation?
What is the difference between an integer and int?
What is the difference between // comments, /* */ comments and /// comments?
What is #region in c#?
What is javascriptserializer c#?
What is the difference between Java and .NET garbage collectors?
What is cookies in c# asp net?
When can a derived class override a base class member?
Why do we use class in c#?
Can you pass value types by reference to a method?
What is whitespace in c#?
Write a program to create a user control with name and surname as data members and login as method and also the code to call it. (Hint use event delegates) Practical Example of Passing an Events to delegates