Which one is the faster early binding or late binding?
Printable View
Which one is the faster early binding or late binding?
I think early binding is quicker :)
In some cases, passing a loosely typed object is needed in an app's logic - so in this case, late binding has its merit. But I do believe that in most VB cases, early binding is preferred not only for its speed, but for error checking capabilities on the part of the compiler which can check an early bound object.
Mostly question is not for speed.
Late binding is very usefull on cases like, you connect you programs to the third part solutions.
Like Excel. You never know what versions customers are using.
With late binding you never need worry about it.