Time represents a time of day independent of a specific date or timezone.
Inheritance: FanObj
Esempio n. 1
0
 internal DateTimeStr(string pattern, Locale locale, Time t)
 {
     this.pattern  = pattern;
       this.m_locale = locale;
       this.hour     = t.getHour();
       this.min      = t.getMin();
       this.sec      = t.getSec();
       this.ns       = t.getNanoSec();
 }
Esempio n. 2
0
File: DateTime.cs Progetto: xored/f4
 internal static DateTime makeDT(Date d, Time t, TimeZone tz)
 {
     return new DateTime(d.m_year, d.m_month, d.m_day, t.m_hour, t.m_min, t.m_sec, t.m_ns, System.Int32.MaxValue, tz);
 }
Esempio n. 3
0
File: DateTime.cs Progetto: xored/f4
 //////////////////////////////////////////////////////////////////////////
 // Constructor - Date, Time
 //////////////////////////////////////////////////////////////////////////
 internal static DateTime makeDT(Date d, Time t)
 {
     return makeDT(d, t, TimeZone.m_cur);
 }
Esempio n. 4
0
File: Date.cs Progetto: nomit007/f4
 public DateTime toDateTime(Time t, TimeZone tz)
 {
     return DateTime.makeDT(this, t, tz);
 }
Esempio n. 5
0
File: Date.cs Progetto: nomit007/f4
 public DateTime toDateTime(Time t)
 {
     return DateTime.makeDT(this, t);
 }