Difference between .dll and .exe?

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

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

15条回答
  •  一生所求
    2020-12-02 04:59

    ● .exe and dll are the compiled version of c# code which are also called as assemblies.

    ● .exe is a stand alone executable file, which means it can executed directly.

    ● .dll is a reusable component which cannot be executed directly and it requires other programs to execute it.

提交回复
热议问题