本文介绍了如何修复“不能隐式隐藏类型”? C#中的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我收到错误消息无法将类型'System.Speech.Synthesis.Prompt'隐式转换为'bool'。



我的代码是:



I am getting the error message, "Cannot implicitly convert type 'System.Speech.Synthesis.Prompt' to 'bool.'"

My code is:

case "quit program"
           bool confirmationResult = speak.SpeakAsync("Are you sure");
           if (confirmationResult)
           {
                  speak.SpeakAsync("Okay");
                  this.close();





ALL THE THE代码:https://codeshare.io/GbeLxj



我尝试过:



我试过制作代码:



ALL OF THE CODE: https://codeshare.io/GbeLxj

What I have tried:

I have tried making the code:

case "quit program"
           bool confirmationResult = Prompt speak.SpeakAsync("Are you sure");
           if (confirmationResult)
           {
                  speak.SpeakAsync("Okay");
                  this.close();



我收到更多错误消息。


I just got more error messages.

推荐答案


这篇关于如何修复“不能隐式隐藏类型”? C#中的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 22:42