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);
        }