Thanks Rob. Can I rely on the following code to return the correct short date for the current locale, or is it not enough?
public static string ToShortDateString(this DateTime dt)
{
DateTimeFormatter dtf = new DateTimeFormatter("shortdate");
return dtf.Format(dt);
}
-- roschler