我正在创建一个w10应用,并希望添加一些网络。 TcpListener和TcpClient类导致 CS0246 (找不到类型或命名空间名称'type / namespace')。包含System.Net.Sockets。
我该如何解决这个问题?对于w10应用程序,我应该使用与tcpClient不同的东西吗?
答案 0 :(得分:0)
我建议您使用此网站:https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/StreamSocket
这是一个很好的示例,演示了使用流套接字(TCP)在Windows 10 Universal App中发送和接收数据。
答案 1 :(得分:-1)
您需要在参考管理器和代码中添加引用:
using System.Net;
using System.Net.Sockets;
How to: Add or Remove References By Using the Reference Manager