gpt4 book ai didi

c# - 如何在 SharpDevelop 中查看控制台?

转载 作者:行者123 更新时间:2023-12-04 00:33:48 25 4
gpt4 key购买 nike

enter image description here

在 SharpDevelop 中编译 Windows 应用程序时如何写入控制台?我想查看在特定方法中生成了哪些随机数以用于调试目的。

最佳答案

如果要查看编译输出,请从“查看”菜单中选择“输出”。输出窗口将出现在 SharpDevelop 的底部。从下拉列表中选择“构建”。

SharpDevelop Output Menu item and Output Window

当为输出选择“调试”时,将出现调试输出。

SharpDevelop debug output

Console.Output 永远不会出现在 IDE 内的任何地方 - SharpDevelop 没有发现这一点。您只能在应用程序的控制台窗口中看到它。

上次截图的代码:

using System;
using System.Diagnostics;
using System.Windows.Forms;

namespace TestApp
{
class MainForm : Form
{
private Random rd;
private const int buttonsCount = 42;

public MainForm()
{
rd = new Random();
Text = "Click on me!";
}

protected override void OnClick(EventArgs e)
{
compMode();
}

public void compMode()
{
int rn = rd.Next(1, buttonsCount);
Debug.WriteLine("rn is {0}", rn);
}

public static void Main(string[] args)
{
Application.Run(new MainForm());
}
}
}

关于c# - 如何在 SharpDevelop 中查看控制台?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23283127/

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