I use the \"bool\" type for variables as I was used to in C++, and I try to put the values of functions or properties I expect to be boolean into my variable. However I ofte
Adding ? makes the type null-able. Which means you can do this:
?
bool? x = null;
And it would be totally OK.