Entrypoint vs. BaseAddress?
I want to find the base address of a DLL. I know there's a way to do this, with API functions, but I heard that some Dynamically Linked Libraries can be compiled so that they always load at the same address. So if that were the case I figure it might be easier just to open the .dll up in a debugger and see what where it starts out. However the question I had was rather the entry point of a .dll would be the same thing as the base address. I would suppose not, but I don't know for sure, which is why Im asking. 

