07 2022 档案
摘要:一个Socket两端,都会有Send和Recv两个方法, 如果client发送数据到server,那么就是客户端进程调用send发送数据,而Send的作用是将数据拷贝进入socket的内核发送缓冲区之中,然后send便会在上层返回。send方法返回之时,数据不一定会发送对端server上去。Send
阅读全文
摘要:参考博文:https://blog.csdn.net/u010476739/article/details/105339149 一、System.Threading.Timer 二、System.Timers.Timer 三、System.Windows.Forms.Timer(Windows Fo
阅读全文
摘要:注意:客户端不需要绑定ip和端口,只需要和服务端建立连接 static void Main(string[] args) { Socket clientSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, Protoco
阅读全文