NVelocity.App.Tools.VelocityFormatter.FormatShortDate C# (CSharp) Method

FormatShortDate() public method

Formats a date in 'short' style.
public FormatShortDate ( System.DateTime date ) : String
date System.DateTime A Date.
return String
		public String FormatShortDate(DateTime date)
		{
			return SupportClass.FormatDateTime(SupportClass.GetDateTimeFormatInstance(3, -1, CultureInfo.CurrentCulture), date);
		}