private void button1_Click(object sender, EventArgs e)
{
textBox2.Text="";
String[] myDqq = textBox1.Lines;
for (int i=0;i<myDqq.Length;i++)
{
if (myDqq[i] != "")
{
textBox2.Text += myDqq[i] + "@qq.com" + "\r\n";
}
}
}
本文轉自 makewong 51CTO部落格,原文連結:http://blog.51cto.com/makewong/559446,如需轉載請自行聯系原作者