Files
VisualizerExtensionExample/TestServer/Program.cs

8 lines
235 B
C#
Raw Normal View History

2026-04-01 12:46:48 +02:00
using System;
using System.Threading;
var pipeServer = new NamedPipes.NamedPipesServer("testPipe",Console.WriteLine);
pipeServer.WaitForConnectionAsync().GetAwaiter().GetResult();
while (pipeServer.IsConnected) Thread.Sleep(100);