I know that in .Net all 32-bit types (e.g, int, bool, etc) are thread safe. That is, there won\'t be a partial write (according to the specificatio
int
bool
No, since an int? is actually a struct (Nullable) composed of an int and a bool.
int?
Nullable