码迷,mamicode.com
首页 > 移动开发 > 详细

Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'

时间:2020-05-12 11:26:21      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:state   sub   ann   class   nbsp   语法错误   can   方案   rand   

一开始想根据Button的Tag属性判断一些操作,于是写了

if (btn1.Tag.ToString().StartsWith("Menu") || btn2.Tag.ToString().StartsWith("Submenu"))
    return;

 

但是Tag属性可能为空,于是给Tag加上判空处理

if (btn1.Tag?.ToString().StartsWith("Menu") || btn2.Tag?.ToString().StartsWith("Submenu"))
    return;

 

这样又引发了语法错误。

Severity    Code    Description    Project    File    Line    Suppression State
Error    CS0019    Operator || cannot be applied to operands of type bool? and bool?

 

解决方案

if ((btn1.Tag?.ToString().StartsWith("Menu") ?? false) || (btn2.Tag?.ToString().StartsWith("Submenu") ?? false)) 
return;

 

Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'

标签:state   sub   ann   class   nbsp   语法错误   can   方案   rand   

原文地址:https://www.cnblogs.com/hupo376787/p/12874698.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!