What is early binding and late binding
Answer Posted / laks
Early binding - Assigning values to variables during design
time or exposing object model at design time.
Late Binding - Late binding has the same effect as early
binding. The difference is that you bind the object
library in code at run-time
| Is This Answer Correct ? | 128 Yes | 17 No |
Post New Answer View All Answers
What is the use of ienumerable?
What is default parameter in c#?
Is c# and .net same?
What is the difference between out and ref in c#?
Is char * null terminated?
What is serialization in c#?
Why we need get set property in c#?
What is the difference between as and is operators in c#?
Define collections?
How can we set class to be inherited, but prevent the method from being over-ridden?
Why can’t struct be used instead of class for storing entity?
What is a hashset c#?
Write a console application and implement the ternary operator to decide whether the age a user entered after being prompted is allowed to vote or not(given that only citizens between 18 and 120 years only inclusive can vote). Use exception handling for non-numerical input.
Why do we need static in c#?
Can we maintain state in webservice?