private void btn_send_Click(object sender, EventArgs e) { string msg = this.txt_msg.Text; if (msg.Length > 0) { client.Send(msg); } this.txt_msg.Text = ""; string msgStr = string.Format("【{0}】【你】:{1}", DateTime.Now.ToString("HH:mm:ss"), msg); ShowMsg(msgStr); }
static void Main(string[] args) { ClientControl client = new ClientControl(); client.Connect("127.0.0.1", 12345); string msg = Console.ReadLine(); while (msg != "quit") { client.Send(msg); msg = Console.ReadLine(); } Console.ReadKey(); }
static void Main(string[] args) { ClientControl clientControl = new ClientControl(); clientControl.Connect("127.0.0.1", 12345); Console.WriteLine("请输入要发送的信息"); string msg = null; while (msg != "quit") { clientControl.Send(msg); msg = Console.ReadLine(); } Console.ReadKey(); }