gpt4 book ai didi

c# - 从 Main() 返回字符串变量

转载 作者:太空狗 更新时间:2023-10-29 17:49:51 24 4
gpt4 key购买 nike

我想从我的 Main() 方法返回一个字符串变量。我已经返回了 int 变量。但是我不确定是否可以在退出程序时从 Main() 返回一个字符串变量?

有什么想法吗?

这是我的 int 代码:

    public class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static int Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());

int error = 1;

return error;

}

}

如果我将 int 更改为 string,我会收到此错误:程序不包含适合入口点的静态“Main”方法。所以显然这是不允许的。什么是正确的做法?

最佳答案

不,你不能返回一个字符串。另一方面,您可以做的是将字符串写入标准输出,然后从调用该程序的程序中捕获该输出。

关于c# - 从 Main() 返回字符串变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7119768/

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