Difference between .dll and .exe?

后端 未结 15 1158
有刺的猬
有刺的猬 2020-12-02 04:23

I want to know the exact difference between the dll and exe file.

15条回答
  •  失恋的感觉
    2020-12-02 04:57

    The difference is that an EXE has an entry point, a "main" method that will run on execution.

    The code within a DLL needs to be called from another application.

提交回复
热议问题