我有一个带有两个文本框和两个按钮的 Windows 窗体。文本框名为 txtVisited 和 txtAnswer。按钮是Visited?
和Exit
。我想在第一个文本框中输入一个城市并让它检查数组是否匹配。如果有匹配项,我想显示它已被访问的文本及其在数组中的位置。如果找不到匹配项,我希望它显示“未访问”文本。我已经复制了到目前为止的所有代码。任何帮助将非常感激。我对 c# 还是很陌生,所以我可能理解也可能不理解你的答案。所以请耐心等待。提前抱歉。
namespace Array
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnExit_Click(object sender, EventArgs e)
{
this.Close();
}
private void btnVisited_Click(object sender, EventArgs e)
{
string[] CityName = {"Columbus", "Bloomington", "Indianapolis",
"Fort Wayne", "Greensburg", "Gary", "Chicago", "Atlanta", "Las Vegas"};
bool visitedbool;
int Subscript;
string QueryCity;
QueryCity = txtState.Text.ToUpper();
int Subscript =0;
visitedbool = false;
while (visitedbool = true)
if (CityName(intsubscript).ToUpper= QueryCity)
{
visitedbool = true
}
else
{
Subscript = Subscript +1
}
}
}
}