Cluster.SpeechToText.Program.speechCapture_OnSpeechRecognized C# (CSharp) Méthode

speechCapture_OnSpeechRecognized() static private méthode

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