Formats a date as a long string in the form "d MMM yyyy" ie: 1 Oct 2010.
public static string FormatDate(this DateTime dt)
public static string FormatDate(this DateTime? dt)
DateTime or DateTime? value to convert into the string format "d MMM yyyy".
string today = DateTime.Today.FormatDate();