How can we Achieve Late binding in C#.Can any give one example.
Answer Posted / sukriya
Polymorphism is the way of achieving late binding in csharp.
class A{}
class B:A{}
class Main
{
A a=new B();
}
| Is This Answer Correct ? | 25 Yes | 6 No |
Post New Answer View All Answers
How do I make a dll in c#?
Why do we use static methods in c#?
What is the delegate in c#?
What is dataview c#?
What basic steps are needed to display a simple report in crystal?
What is the difference between CreateObject() and GetObject()?
Can we have two main methods in c#?
Is class reference type c#?
How does c# achieve polymorphism?
Can we maintain state in webservice?
How to use session under class file of APP_Code folder?
What do you mean by default constructor?
Explain how do you convert a value-type to a reference-type?
How many bits is int32?
Why to use “finally” block in c#?