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


Please Help Members By Posting Answers For Below Questions

What are the principles of delegation?

692


What does ienumerable mean?

661


What does readonly mean in c#?

735


In a C# class we have a SortedList member m_addinProjects we want to provide an iterator to allow the consumer of this class access to the items in the collection. Please provide an iterator method for the AnalyzeAddinsDLL class below and an example of how it would be used. namespace AnalyzeAddinsDLL { public class AllAddInProjects { private SortedList m_addinProjects; public AllAddInProjects() { m_addinProjects = new SortedList(); } } }

2044


What is xml serializer?

664


Is java better than c#?

674


Define multicast c# delegate?

721


What are verbatim strings in c#?

663


what are the differences between a class and structure

739


What is throw in c#?

676


How do you declare a variable in c#?

710


What is a trace and asset? Explain some differences?

912


So what makes your code really object-oriented #?

683


What is difference between asp net and c# net?

665


Give an example of removing an element from the queue?

656