How would I check for a null datetime value in a DataRow?
The following works with a dataReader.
calEventDTO.endTime = dr.IsDBNull(9) ? null : (DateTime?) dr.GetDateTime(9);
What is the equivalent when checking the following DataRow?
calEventDTO.endTime = (DateTime)row["endTime"];
Sorry for the very newbee question.