What is early binding and late binding
Answer Posted / kanak
From a program point of view during early binding the
function call is resolved at compile time.
In case of late binding the function call is resolved at
run time with the superclass reference object. It calls the
function of that subclass whose object is being referred by
the superclass reference object.
Is This Answer Correct ? | 63 Yes | 19 No |
Post New Answer View All Answers
What is an escape sequence in c#?
how to stored and retrive video in Sql server using asp.net c#......?
What is the difference between an integer and int?
How is a string immutable?
What is an inheritance in c#?
What is jagged array in c#?
Can a class have static constructor?
What is the difference between selection and projection?
Describe the types of comments in c#?
How do you comment out code in c#?
What is the difference between System.console.WriteLine() and System.console.Write() function?example?
Name which controls do not have events?
What is firstordefault c#?
Write one code example for compile time binding and one for run time binding? What is early/late binding?
What is the advantage of constructor?