MonoTouch.Dialog.DateTimeElement.FormatDate C# (CSharp) Méthode

FormatDate() public méthode

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