MonoTouch.Dialog.DateTimeElement.FormatDate C# (CSharp) 메소드

FormatDate() 공개 메소드

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