Ah, my apologies. Forgot the nullable date time was different.
AdjDate.Value.ToString("MM/dd/yyyy")
Edit: If you are worried that the date will ever be null, use this instead:
AdjDate == null? "[N/A]": AdjDate.Value.ToString("MM/dd/yyyy")
Ah, my apologies. Forgot the nullable date time was different.
AdjDate.Value.ToString("MM/dd/yyyy")
Edit: If you are worried that the date will ever be null, use this instead:
AdjDate == null? "[N/A]": AdjDate.Value.ToString("MM/dd/yyyy")