Kimono.KTimeZone.FromTime_t C# (CSharp) Method

FromTime_t() public static method

Converts a UTC time, measured in seconds since 00:00:00 UTC 1st January 1970 (as returned by time(2)), to a UTC QDateTime value. QDateTime.SetTime_t() is limited to handling t >= 0, since its parameter is unsigned. This method takes a parameter of time_t which is signed.
public static FromTime_t ( int t ) : QDateTime
t int
return QDateTime
        public static QDateTime FromTime_t(int t)
        {
            return (QDateTime) staticInterceptor.Invoke("fromTime_t$", "fromTime_t(time_t)", typeof(QDateTime), typeof(int), t);
        }