From 21fbbc689bb8a863358153cb296406cada438cfa Mon Sep 17 00:00:00 2001 From: Carlos Fonseca M Date: Thu, 28 Feb 2019 13:09:28 -0600 Subject: [PATCH] Remove unnecessary read key The readkey is keeping DS process alive. --- .../net_framework/CSharpExamples/DeepSpeechConsole/Program.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/net_framework/CSharpExamples/DeepSpeechConsole/Program.cs b/examples/net_framework/CSharpExamples/DeepSpeechConsole/Program.cs index f7c0684c..9b5b7251 100644 --- a/examples/net_framework/CSharpExamples/DeepSpeechConsole/Program.cs +++ b/examples/net_framework/CSharpExamples/DeepSpeechConsole/Program.cs @@ -109,7 +109,6 @@ namespace CSharpExamples Console.WriteLine("Error loding the model."); } } - Console.ReadKey(); } } }