void void的问号运算符

时间:2013-06-12 13:59:45

标签: operator-keyword

有人可以提供帮助 我在C#工作,我想用? :运营商。 我不需要获得解决方案状态我只需要播放不同的声音进行冲洗/ noFlushing按钮 我的代码是

var status = lSBControl.FlashConfirmButtonOnShowContentTab ? (override)                            
ExecutiveControl.Instance.IVDStateModel.TheIVDInterface.PlaySound(PA.HomeHelp.IVDGlobal.SystemSounds.ButtonClick)
ExecutiveControl.Instance.IVDStateModel.TheIVDInterface.PlaySound(PA.HomeHelp.IVDGlobal.SystemSounds.ButtonNoClick);
                 :  

1 个答案:

答案 0 :(得分:0)

条件运算符只能用于具有值(兼容类型)的表达式。

您需要使用if / else