Kimono.KLocale.FormatDateTime C# (CSharp) Method

FormatDateTime() public method

Returns a string formatted to the current locale's conventions regarding both date and time. name="dateTime" the date and time to be formatted name="format" category of date format to use name="options" additional output options
public FormatDateTime ( KDateTime dateTime, KLocale format, uint options ) : string
dateTime KDateTime
format KLocale
options uint
return string
        public string FormatDateTime(KDateTime dateTime, KLocale.DateFormat format, uint options)
        {
            return (string) interceptor.Invoke("formatDateTime#$$", "formatDateTime(const KDateTime&, KLocale::DateFormat, KLocale::DateTimeFormatOptions) const", typeof(string), typeof(KDateTime), dateTime, typeof(KLocale.DateFormat), format, typeof(uint), options);
        }

Same methods

KLocale::FormatDateTime ( KDateTime dateTime ) : string
KLocale::FormatDateTime ( KDateTime dateTime, KLocale format ) : string
KLocale::FormatDateTime ( Qyoto.QDateTime dateTime ) : string
KLocale::FormatDateTime ( Qyoto.QDateTime dateTime, KLocale format ) : string
KLocale::FormatDateTime ( Qyoto.QDateTime dateTime, KLocale format, bool includeSecs ) : string