本文介绍了如何在Visual Studio Debugger中调试LinqPad查询?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我可以附加调试器并使其破坏 - 但是找不到.cs文件时遇到麻烦,我认为LinqPad会将其删除作为其构建的一部分。8 - (
I can attach the debugger and get it to break - but it has trouble finding the .cs file, I think LinqPad deletes it as part of its build.. 8-(
推荐答案
如果您调用 Debugger.Launch()
/ Debugger.Break()
在LINQPad脚本中启动断点,LINQPad会猜测您要使用VS来调试脚本,不会删除.cs文件。
If you call Debugger.Launch()
/ Debugger.Break()
to initiate the breakpoint within your LINQPad script, LINQPad will guess that you want to use VS to debug your script and won't delete the .cs file.
这篇关于如何在Visual Studio Debugger中调试LinqPad查询?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!