1
vote
4answers
201 views
Can I late bind to event handlers in C#?
I'm creating objects dynamically and inserting them into an html table, the objects are either labels or linkbuttons, if they are linkbuttons i need to subscribe an eventhandler to the click event, …
5
votes
4answers
2k views
Early binding vs. late binding: what are the comparative benefits and disadvantages?
When discussing the evolution of computer languages, Alan Kay says that the single most important attribute of his Smalltalk is late binding; it gives the language its malleability and extensibility, …
0
votes
2answers
130 views
Createinstance() - Am I doing this right?
I'm trying to put together a plugins system with .NET, and I'm not sure if I'm doing it correctly. The basis of the system is that a specific directory ({apppath}/Plugins/) will have a bunch of …
