Creating DLL in Visual Sutdio Environment.
- After compilation, we recieve .dll file & .lib file. Why we got lib? isnt it dynamic linking? well this file doesnt contain code, only the symbols of the exported dll functions. so linker can use this file to incept in executable the right references to our dll file. the dll file contains the code.
- More info about linkers & loaders can be found briefly here or more detailed in some videos of The Life Of Binaries Course
- Ilay Gilman