What is early binding and late binding
Answer Posted / chitranjan
Early Binding :-1 - In C#, early binding is a process in
which a variable is assigned to a specific type of object
during its declaration to create an early-bound object.
Late Binding - 1 - Late bound means the target method is
looked up at run time. Often the textual name of the method
is used to look it up. If the method isn't there, bang. The
program will crash or go into some exception handling scheme
at run time.
If you want to get more difference then use this link or
copy and past in your browser
http://dotnetnukes.blogspot.in/2013/06/late-binding-and-early-binding-in-c.html
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to handle exceptions that are raised in a component?
Define multicast c# delegate?
Can properties be static in c#?
What is the base class from which all value types are derived?
What is Implementation inheritance and interface inheritance?
Is datetime immutable c#?
What is web forms in c#?
What are the uses of delegates in c#?
When should we use delegates in c#?
What is _viewstart cshtml?
What are accessors?
what is partial assembly reference
What is difference between sleep () and wait ()?
Can enum be null c#?
What is hash c#?