MonoTouch.Dialog.DateTimeElement.FormatDate C# (CSharp) Method

FormatDate() public method

public FormatDate ( System.DateTime dt ) : string
dt System.DateTime
return string
		public virtual string FormatDate (DateTime? dt)
		{
			if (dt.HasValue)
				return fmt.ToString (dt) + " " + dt.Value.ToLocalTime ().ToShortTimeString ();
			return "";
		}