gpt4 book ai didi

c# - 是否可以在变量名的名称中使用变量号?

转载 作者:行者123 更新时间:2023-11-30 19:42:37 25 4
gpt4 key购买 nike

(使用 WPF)是否可以使用 TextBox 的编号来选择参数名称?例如,用户可以将 0、1、2 或 3 作为文本放入 TextBox:

private void button1_Click(object sender, RoutedEventArgs e)
{
int test = int.Parse(textBox1.Text);

string nr1 = "this string is 1";
string nr2 = "this string is 2";
string nr3 = "this string is 3";

MessageBox.Show();
}

现在 MessageBox.Show(); 想要把一些东西作为 nr(test)
这样的事情可能吗?

最佳答案

为什么不使用 Dictionary

var dict = new Dictionary<int,string>();
dict.Add(1,"String Number 1");
dict.Add(2,"String Number 2");
dict.Add(3,"String Number 3");

int test = int.Parse(textBox1.Text);
MessageBox.Show(dict[test]);

关于c# - 是否可以在变量名的名称中使用变量号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17144081/

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