本文介绍了使用C#进行TCP客户端 - 服务器通信的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 您好b $ b我正在使用 用于服务器 - 客户端通信的TCPLisetner和TCPClient。 在我的应用程序中,客户端和客户端的服务器发送请求返回响应。我并行提出了请求,如何确定哪个请求的响应。 示例: 服务器听力 192.123.2.100,23212 客户端连接到该端口 (只有一个客户) $ 服务器请求(并行流程) 服务器发送请求a + b 服务器发送请求ab 服务器发送请求c * d 服务器发送请求cd 服务器发送请求c / f 服务器发送请求c * d 服务器发送请求e + d 如何实现这一目标?解决方案 HiI am using TCPLisetner and TCPClient for Server-Client Communication .In my application , the Server Send Request to the client and client returns response. i have made request parallely , how can i map which response for which request .Example :Server Listening 192.123.2.100 , 23212Client Connect to that port ( only one client )Request from Server (parallel process )Server Send Request a+bServer Send Request a-bServer send Request c*dServer send Request c-dServer send Request c/fServer send Request c*dServer send Request e+dHow can i achieve this ? 解决方案 这篇关于使用C#进行TCP客户端 - 服务器通信的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-07 09:59