experimental

This commit is contained in:
Namhyeon Go 2024-01-04 17:43:57 +09:00
parent 43a56c5360
commit 1972c4f44a
3 changed files with 2 additions and 2 deletions

View File

@ -14,8 +14,8 @@ namespace WelsonJS.Toolkit.Experimental
Console.Write("Input the shared memory name: ");
listener.memName = Console.ReadLine();
Console.Write("Open the second process name: ");
listener.processName = listener.OpenFileDialog();
Console.Write("Input the second process name: ");
listener.processName = Console.ReadLine();
Thread listenerThread = new Thread(listener.Listen);
listenerThread.Start();