selectedItem has two fields:
- int? _cost
- string _serialNumber
In this example, _cost and _serialNumber of selectedItem are BOTH null. I am reading through the fields of selectedItem via their properties, and filling in textboxes with their values, when...
TextBox1.Text = selectedItem.Cost.ToString(); //no error
TextBox2.Text = selectedItem.SerialNumber.ToString(); //error
I understand that SerialNumber.ToString() is redundant (because it is already a string), but I don't understand why this causes a "Nullable object must have a value" exception.
int? _costis nullable, and does not have a value, yet it does not give me the exception.string _serialNumberis nullable, and does not have a value, yet it does give me the exception.
This question touches on it, the guy is essentially asking the same thing, but there is no designated answer, and it also doesn't explain why a nullable int? For example, can I use .ToString() on a nullable int but not on a null string?
MessageBox.ShowandString.Concatwork withnullstrings. – Mark Byers Jul 12 '12 at 10:28int?is a value type, which is calledNullable<T>, that has special handling for null values;stringis a reference type, (though a somewhat odd one) which can actually have a value ofnull. Anint?always has a value, it just has a special way of saying "I'm acting likenullright now." – Michael Edenfield Jul 12 '12 at 16:45