whats the difference bt. .dll extension and .exe extension files?
DLL : It is an inprocess server and runs in the same memory space as client application. Problem with dll is if any error comes in dll, whole application gets crashed.
Exe : It is an out of process server and rus as independent application in seperate memory. If error comes in exe, it does not affact the client application.
Explore posts in the same categories: VB.NET Interview Questions