Answer Posted / mohit bhandari
An interface is a named set of method signatures.Interfaces
can also define events and properties because all of these
are just syntax shorthands that map to methods anyway.
In C#, interface keyword is used to define an interface,
giving it a name and its set of instance method signatures.
e.g.
public interface IDisposable {
void Dispose();
}
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
hi all.... i need code snippets for store and retrive tiff fromat images in sqlserver....... kindy provide it.......
What are the steps for creating clr trigger
What are cookies in c#?
What is better C# or VB.NET?
What is Assembly. and Describe type of assembly. why most developer happy with private assembly.
What are delegates?
What is the use of nullable types in c#?
How to rotate an Image in C#?
Explain the process of abstraction with an example?
What is array collection?
How do partial classes work in c#?
Are classes passed by reference in c#?
What is difference between out and ref in c#?
What is the difference between CreateObject() and GetObject()?
Name some string escape sequences in c#.