The DateTime.TryParse method takes a DateTime as an argument, not a DateTime? ?
Right now I have the following code:
if(!DateTime.TryParse(reader[\"P
Use the IsDBNull method of the reader to determine if the value is null prior to trying to parse a date out of it.
IsDBNull