With this code:
private bool AtLeastOnePlatypusChecked()
{
return ((ckbx1.IsChecked) ||
(ckbx2.IsChecked) ||
(ckbx3.IsChecked) ||
(ckbx4.IsChecked));
}
...I'm stopped dead in my tracks with
Operator '||' cannot be applied to operands of type 'bool?' and 'bool?
So how do I accomplish this?