TcpClient を作成しようとしていますが、コンストラクターに問題があります...
public class TcpClient : IDisposable
{
static void Connect(String server, String message)
{
try
{
// Create a TcpClient.
// Note, for this client to work you need to have a TcpServer
// connected to the same address as specified by the server, port
// combination.
Int32 port = 9000;
TcpClient client = new TcpClient(server, port);
エラーが発生します:
エラー 1 'TcpClient' には 2 つの引数を取るコンストラクターが含まれていません
私の質問:
この問題が発生する理由と解決方法を教えてください。