111,092
社区成员




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);
}