If I declare, for example, a Nullable Boolean type and assign it to a value, let's say true, how do I set it back to null if I want to . I tried NULL, nullptr, and I searched around the documentation a little bit and didn't find the answer. The best I could come up with that works is the following:
Nullable<Boolean> nullbool;
Nullable<Boolean> nb =
true;nb = nullbool;
is there an equivalent keyword or constant in C++ to C# null or VB Nothing