コード例 #1
0
        private void ListenForOutput(IModConfig config)
        {
            var listener = new OutputListener(config);

            listener.OnOutput += Console.Write;
            listener.Start();
        }
コード例 #2
0
ファイル: App.cs プロジェクト: misternebula/owml
 private void ListenForOutput()
 {
     _listener.OnOutput += OnOutput;
     _listener.Start();
 }