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

FormatLongDate() public method

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