如何在 Visual Studio 调试器中调试 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-(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您
在 LINQPad 脚本中调用启动断点,LINQPad 会猜测您想要使用 VS 来调试脚本,并且不会删除 .cs 文件。
If you call
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.
如果您的 LINQPad 代码正在调用某些引用的 C# 程序集中的方法,并且您想要在 Visual Studio 2015 中调试该程序集,这对我有用:
If your LINQPad code is calling a method in some referenced C# assembly and you want to debug that assembly in Visual Studio 2015, this worked for me: