.net中不同的方法相同的结果
------- <A target="blank" rel="nofollow" href="" >Windows Phone 7手机开发</A>、<A target="blank" rel="nofollow" href="" >.Net培训</A>、期待与您交流! -------
在.net中很多时候用不同的方法可以得到相同的结果
例如
private void button2_Click(object sender, EventArgs e)
{
textBox2.AppendText(textBox1.Text);
}
private void button3_Click(object sender, EventArgs e)
{
textBox2.Text = textBox2.Text + textBox1.Text;
}
当文本框textBox1中文字过少的时候第二种方法反应很快但是当textBox1中文字过大的时候第二种方法就反应过慢了。所以在写程序时一定要认真想好方法防治程序反应过慢或者瘫痪!