我做了这个小的嵌套 for 循环,它在 C# 中没有显示任何错误,但是当我尝试运行我的小程序时,我在我的中收到以下错误TextBox
:
System.Windows.Forms.TextBox,文本:System.Windows.Forms.TextBox,文本:系统...
这是我的代码:
int number = textBox.Text..ToString();
for (int row = 0; row < number; row++)
{
for (int x = number - row; x > 0; x--)
{
textBox2.Text = textBox2.Text + "X";
}
textBox2.Text = textBox2 + Environment.NewLine;
}
我的结果应该是这样的:
XXXX
XXX
XXX
_
我无法弄清楚可能导致此错误的原因。