摘要: 1 private void button1_Click(object sender, EventArgs e) 2 { 3 string str = textBox1.Text; 4 char first = str[0]; 5 string second = str.Substring(1); 6 textBox1.Text = second + first; 7 } 8 9 private void button2_Click(obje... 阅读全文
posted @ 2013-08-19 09:53 垂坠 阅读(138) 评论(0) 推荐(0) 编辑