我想在一个文本框中并排显示两个列表的内容。
问题是第二个出现在第一个下面。
下面,红色的内容应该在 maxlen 列下,而不是在 Seq 列中的数字 50 下。
private void button7_Click(object sender, EventArgs e)
{
textBox1.Text = "Seq MaxLen\r\n";
foreach (object o in MaxLen)
{
textBox1.Text += String.Join(Environment.NewLine, MaxLen);
}
foreach (object a in SeqIrregularities)
{
textBox1.Text += String.Join(Environment.NewLine, SeqIrregularities);
}
}