What are types of binding?


Assigning variable with defined memory space.
Late Binding - Memory size is allotted in later stage.
Ex:- Dim x as object
Early Binding - Memory size is allotted while declaring itself. New Key word is important.
Ex:- Dim x as New Object

Showing Answers 1 - 1 of 1 Answers

manju

  • Feb 8th, 2006
 

There are 2 types of binding

Early binding, Late binding

Early binding

Dim obj as new classname

Object created during compile time

Late binding

Dim obj as object

set obj = new classname

This binds the object to the particular class at runtime.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions