Cosmos/source2/Debug/Cosmos.Debug.Common/CDebugger/DebugConnectorTCPClient.cs
mterwoord_cp 9a8cbd13cc
2009-11-07 13:00:31 +00:00

18 lines
No EOL
443 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.IO;
using System.Text;
namespace Cosmos.Debug.Common.CDebugger
{
public class DebugConnectorTCPClient : DebugConnectorStream {
public DebugConnectorTCPClient() {
var xTCPClient = new TcpClient("localhost", 4444);
Start(xTCPClient.GetStream());
}
}
}