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
Define constructors
What is executenonquery c#?
Write a program in c# to find the angle between the hours and minutes in a clock?
Why do we need constructors?
What is interface c#?
What is the use of properties window?
Why are strings in c# immutable?
What is the difference between c and c# programming?
Why we use methods in c#?
Is it possible to have a static indexer in c#? Allowed in c#.
What is gui in c#?
I have 3 overloaded constructors in my class. In order to avoid making instance of the class do I need to make all constructors to private?
Explain about c# language.
What is the difference between returning iqueryable vs ienumerable?
What is a collection class in c#?