使用此代码:
private bool AtLeastOnePlatypusChecked()
{
return ((ckbx1.IsChecked) ||
(ckbx2.IsChecked) ||
(ckbx3.IsChecked) ||
(ckbx4.IsChecked));
}
...我在我的轨道上停下来
Operator '||' cannot be applied to operands of type 'bool?' and 'bool?
那么我该如何实现呢?