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
What is iqueryable in linq?
How will you deploy the dll file in gac?
What are strongly typed objects?
How to sort an int array in c#?
What is Web.config?
How to reduce image resolution in C#?
Why do we use void in c#?
What do you mean by winforms in c#?
How do I automate my desktop application?
What are c# i/o classes?
What is a data set in c#?
What is hashset c#?
What is namespace c#?
Explain lock, monitors, and mutex object in threading.
What is an assembly qualified name? Is it a filename? How is it different?