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 a namespace server?
What is a datacontract?
How can I check the type of an object at runtime?
What is a delegate in c#?
What's the c# syntax to catch any possible exception?
Please write a program to display “welcome to bestinterviewquestion.com” in c#?
What is xaml file in c#?
What is the different types of private assembly and shared assembly?
How many bytes is a long c#?
So what makes your code really object-oriented #?
Explain the feature of c# language?
What is array class in c#?
Tell me the difference between call by value and call by reference.
what is virtual method in c#?
What are the different types of comments in c#?