111,120
社区成员
发帖
与我相关
我的任务
分享
textBox6.Text = Failure ;
textBox6.SelectionStart = textBox6.Text.Length;
textBox6.SelectionLength = 0;
textBox6.ScrollToCaret();
if(this.textBox1.Lines.Length>20)
{
string[] newlines = new string[20];
Array.Copy(this.textBox1.Lines, this.textBox1.Lines.Length - 20, newlines, 0, 20);
this.textBox1.Lines = newlines;
} if(this.textBox1.Lines.Length>20)
{
string[] newlines = new string[20];
this.textBox1.Lines = Array.Copy(this.textBox1.Lines, this.textBox1.Lines.Length - 20, newlines, 0, 20);
}