gpt4 book ai didi

visual-studio - 在 Visual Studio 中自动逐步调试?

转载 作者:行者123 更新时间:2023-12-05 01:03:21 24 4
gpt4 key购买 nike

我已经厌倦了每一步都按 F10 来调试程序。是否有任何程序可以自动化 Visual Studio 以一致的频率运行每个调试步骤?比如,每步 3 秒?

问候,山姆

最佳答案

您可以使用 Autohotkey 中的简单脚本轻松完成此操作。

从这里下载:http://www.autohotkey.com/

  1. 安装 Autohotkey。

  2. 运行它。

  3. 在任务栏(右下角)中找到绿色的“H”图标。

  4. 右击图标并选择编辑脚本。

  5. 并在下面复制粘贴此脚本。

^!y::
InputBox, input1, How many F10 strokes you want?, , , 250, 100
InputBox, input2, How many seconds between each F10 stroke?, , , 250, 100

if ErrorLevel <> 0
{
MsgBox, CANCEL was pressed.
}
else
{
loop, %input1%
{
Sleep, (input2 * 1000)
Send {F10}
}
MsgBox, "Your F10 script has Ended"
}
return
  1. 然后重新加载(再次右键单击任务栏中的绿色“H”图标)。

  2. 按 Control+Alt+y 试试上面的脚本。

关于visual-studio - 在 Visual Studio 中自动逐步调试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3270165/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com