10 public DateTime DateTime
14 if (!this.initialized)
16 this.m_dateTime =
new DateTime(this.m_ticks);
17 this.initialized =
true;
19 return this.m_dateTime;
26 this.m_ticks = dateTime.Ticks;
27 this.m_dateTime = dateTime;
28 this.initialized =
true;
38 return this.m_ticks.CompareTo(other.m_ticks);
46 private bool initialized;
49 public DateTime m_dateTime;