Cosmos/source/Cosmos.Build.Windows/DebugConnectorTCPClient.cs
2008-10-23 21:13:42 +00:00

20 lines
483 B
C#

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