mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
19 lines
465 B
C#
19 lines
465 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.IO.Pipes;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Debug.Common.CDebugger
|
|
{
|
|
public class DebugConnectorPipeClient : DebugConnectorStream {
|
|
|
|
public DebugConnectorPipeClient() {
|
|
NamedPipeClientStream xPipe = new NamedPipeClientStream("CosmosDebug");
|
|
xPipe.Connect();
|
|
Start(xPipe);
|
|
}
|
|
|
|
}
|
|
}
|