以下のコマンドを使用してTelnetに接続しています
    remote = new IPEndPoint(ip, port);
    client = new TcpClient();
    client.Connect(remote);
    ns = client.GetStream();
以下のコマンドを使用してコマンドをサーバーに送信します。
        byte[] data = System.Text.Encoding.Default.GetBytes(command);
        ns.Write(data, 0, data.Length);
Tab キーを Telnet クライアントに送信できません。
解決策を教えてください。