.net里面 exe 和 dll 的区别

来源:互联网 发布:人体工学椅推荐 知乎 编辑:程序博客网 时间:2024/05/11 16:35

DLL


1. It can be reused.
2. It can be versioned.
3. It is not self executable
4. It doesn't have main function

.EXE
1. It cannot be reused
2. It cannot be versioned.
3. It is self executable.
4. It will have main
function.

another main difference is dll cannot be run individully but exe files can run individully

原创粉丝点击