所以我想在C#中使用一些服务器客户端组件,但在使用TCPClient时遇到了问题。在实例化它时,我似乎无法访问根据documentation获取字符串和int的构造函数。为什么会发生这种情况?如何解决?
using System;
using System.Net.Sockets;
using System.Text;
namespace Client
{
internal class Client
{
private readonly int PORT = 2500;
private readonly string IP = "127.0.0.1";
public Client()
{
TcpClient client = new TcpClient(IP, PORT);
答案 0 :(得分:0)
看来你解决了我遇到的问题。所以试试这个:
TcpClient client = new TcpClient();
await client.ConnectAsync(IP, PORT);
我猜你正在使用.NET Core
。我希望对你有所帮助:))