Wondering if there is a simpler way to check for a nullable bool being true.
I find myself doing code like this a lot which gets real bulky. Any faster way to do it?
bool? x = false;
if (x.hasValue && x.Value) ...
Seems like there must be a clean faster way to check for true