Cluster.SpeechToText.Program.speechCapture_OnSpeechRecognized C# (CSharp) Метод

speechCapture_OnSpeechRecognized() статический приватный Метод

static private speechCapture_OnSpeechRecognized ( string result ) : void
result string
Результат void
        static void speechCapture_OnSpeechRecognized(string[] result)
        {
            Console.WriteLine("Google recognized:");
            foreach (var text in result)
                Console.WriteLine(text);
        }