How can we Achieve Late binding in C#.Can any give one example.
Answer Posted / dileep
Late Binding means compiler doesn't have any prior knowledge
about COM's methods and properties and it is delayed until
runtime. Actually program learns the addresses of methods
and properties at execution time only i.e. when those
methods and properties are invoked. Late bound code
typically refers client objects through generic data types
like 'object' and relies heavily on runtime to dynamically
locate method addresses. We do late binding in C# through
reflection. Reflection is a way to determine the type or
information about the classes or interfaces.
| Is This Answer Correct ? | 18 Yes | 4 No |
Post New Answer View All Answers
How do you determine whether a string represents a numeric value?
What is a c sharp?
If you donot specify an access modifier for a method, what is the default access modifier?
Why do we need constructor?
In howmany ways can you deploy an assembly?
What are anonymous types in c#?
Define multicast delegate in c#?
What standard types does c# use?
what is IFormatable
How do you escape in c#?
What is the difference between static and constant variables?
What is the advantage of singleton class?
What is dataset c#?
Explain how do I convert a string to an int in c#?
What is toint32 c#?