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
Is datetime immutable c#?
Explain what are the steps for creating clr trigger?
What is the difference between CONST and READONLY?
What is winforms c#?
What is extension method in c# and how to use them?
What are value types and reference types?
What is string programming language?
Write a program to create a user control with name and surname as data members and login as method and also the code to call it. (Hint use event delegates) Practical Example of Passing an Events to delegates
If you want to write your own dot net language, what steps you will u take care?
What are properties in C#?
Can a class be private in c#?
What is the difference between abstraction and encapsulation in c#?
How can we sort the elements of the array in descending order?
What is a constructor in c#?
How do I do a case-insensitive string comparison?