Cluster.SpeechToText.Program.speechCapture_OnSpeechRecognized C# (CSharp) Method

speechCapture_OnSpeechRecognized() static private method

static private speechCapture_OnSpeechRecognized ( string result ) : void
result string
return void
        static void speechCapture_OnSpeechRecognized(string[] result)
        {
            Console.WriteLine("Google recognized:");
            foreach (var text in result)
                Console.WriteLine(text);
        }