我有一个测试项目,将 4 个字符串放在一个列表中,但似乎做错了。我正在尝试使用 for 和 foreach 循环在 2 个文本框中查看我的列表。
private void button1_Click(object sender, EventArgs e)
{
List<string[]> testList2 = new List<string[]>();
string[] text = { textBox1.Text, textBox2.Text, textBox3.Text, textBox4.Text };
testList2.Add(text);
textBox5.Text = testList2.Count.ToString();
foreach (string[] list1 in testList2)
{
foreach (string list2 in list1)
{
textBox6.Text = list2.ToString();
}
}
string temp = testList2.ToString();
for (int i = 0; i < testList2.Count; i++)
{
for (int j = 0; j < i; j++)
{
textBox7.Text = testList2[j].ToString();
}
}
}