I have recently come across a situation where code is dynamically loading some libraries, wiring them up, then calling what is termed the "application entry point"point" (one of the libraries must implement IApplication.Run()).
Is this a valid use of the term application"Appliation entry point"?
I would always have considered the application entry point to be before the loading of the libraries and found the IApplication.Run() being called after a considerable amount of work slightly misleading.
