When I reverse engineer my classes I get the following:
public Nullable<bool> Correct { get; set; }
public Nullable<bool> Response { get; set; }
I coded:
public bool? Correct { get; set; }
public bool? Response { get; set; }
Can someone tell me if there is any difference between these two. I have not seen the Nullable<bool>
before and I'm not sure why it does not just create a "bool".
Note: I changed my coded to bool? in response to comments by Jon