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

FormatShortDateTime() public method

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