gpt4 book ai didi

c# - 如何在其他地方使用范围内的信息

转载 作者:太空宇宙 更新时间:2023-11-03 21:08:20 24 4
gpt4 key购买 nike

我想在另一个代码范围内使用从 ReadLine() 收集的信息。我创建了一个菜单并使用了 if 语句。如果我想使用菜单中选项 1 中收集的信息,并将其写入选项 2,我该怎么做?

if (selectMenu == 1)
{
Console.WriteLine("What item will you put in the backpack?");
//Console.ReadLine();
string item = Console.ReadLine();
}
else if (selectMenu == 2)
{

}

所以基本上我希望能够在 else if 中使用 item

最佳答案

您可以在外部范围内声明变量:

string item = null;
if (selectMenu == 1)
{
Console.WriteLine("What item will you put in the backpack?");
item = Console.ReadLine();
}
else if (selectMenu == 2)
{
}

... you could use the item variable here but it will have its default value of null
if selectMenu was different than 1 because in this example we assign it
only inside the first if.

关于c# - 如何在其他地方使用范围内的信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39665799/

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