摘要: 1 string MSG = TextBox1.Text; 2 string[] New_MSG = MSG.Split(new string[] {"\r\n"}, StringSplitOptions.None); 3 TextBox2.Clear(); 4 TextBox3.Clear(); 5 TextBox2.Text = New_MSG[0]; 6 TextBox3.Text = ... 阅读全文
posted @ 2019-04-17 09:50 小宇先森 阅读(1938) 评论(1) 推荐(0) 编辑