仅跨本地网络创建客户端服务器程序
基本上我需要仅使用本地网络创建客户端和服务器,不会连接到互联网。使用 TcpClient 就足够了,还是需要互联网连接?
Basically I need to create a client and server using only the local network, there won't be a connection to the internet. Would using TcpClient suffice, or does that need an internet connection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您不需要互联网连接。您所需要的只是一个
集线器
或一个路由器
,可以将IP数据包定向到本地网络内的所有计算机。No, you don't need an internet connection. All you need is a
hub
or arouter
that can direct the IP packets to all the computers inside the local network.