예제 #1
0
 public override void Execute()
 {
     if (string.IsNullOrEmpty(statement))
     {
         return;
     }
     TextToSpeech.SpeakText(statement);
 }
        public override void Execute()
        {
            if (string.IsNullOrEmpty(expression))
            {
                return;
            }
            var expResult = TalkCodePackage.vsOperations.RunExpressionInDebugger(expression);

            if (!string.IsNullOrEmpty(expResult))
            {
                TextToSpeech.SpeakText(expResult);
            }
        }