本文介绍了Debug Dll和Release Dll之间的区别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,专家,

我对dll有某些疑问.有人可以帮我吗?
1. Debug Dll和Release Dll有什么区别.
2.如果我有一个Debug Dll,它在运行应用程序时有什么帮助.另外,如何确定特定的dll是释放dll还是调试dll.

谢谢与问候

Arun

Hi Experts,

I have certain doubts on dlls. Can anyone help me on this.?
1. What is the Difference between a Debug Dll and Release Dll.
2. If I have a Debug Dll, how it helps while running the application. Also how I can identify a particular dll is release dll or debug dll.

Thanks and Regards

Arun

推荐答案



阿伦印度写道:

   ; 1. Debug Dll和Release Dll有什么区别.

   1. What is the Difference between a Debug Dll and Release Dll.


答案1)如果它用dll包含pdb文件的xml文件,则它处于调试模式,否则处于发布模式.


Answer 1) if it conatains xml files of pdb files with dlls then it is in debug mode otherwise it is in release mode.

阿伦印度写道:

   2.如果我有一个Debug Dll,它在运行应用程序时有什么帮助.另外,我如何识别特定的dll是释放dll或调试dll.

   2. If I have a Debug Dll, how it helps while running the application. Also how I can identify a particular dll is release dll or debug dll.


答案2)包含在DLL文件中的程序集信息将存储是否以deug或release模式编译.
这是用于获取装配信息的第三方软件:
.NET组装信息 [ ^ ]

参考 Link- [debug&释放DLL] [ ^ ]


Answer 2)The assembly information include in the DLL files will store whether it is compiled in deug or release mode.
Here is a Third-party software for getting assembly info:
.NET Assembly Information[^]

Reference Link-[The difference between debug & release Dll] [^]


这篇关于Debug Dll和Release Dll之间的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 01:49