/// <summary>
 /// True when this date time is greater than another date time.
 /// </summary>
 public bool GreaterThan(DaggerfallDateTime other)
 {
     if (this.ToSeconds() > other.ToSeconds())
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
 /// <summary>
 /// True when date times are equal.
 /// </summary>
 public bool Equals(DaggerfallDateTime other)
 {
     if (other.ToSeconds() == this.ToSeconds())
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
 /// <summary>
 /// True when this date time is less than another date time.
 /// </summary>
 public bool LessThan(DaggerfallDateTime other)
 {
     if (this.ToSeconds() < other.ToSeconds())
         return true;
     else
         return false;
 }
 /// <summary>
 /// True when date times are equal.
 /// </summary>
 public bool Equals(DaggerfallDateTime other)
 {
     if (other.ToSeconds() == this.ToSeconds())
         return true;
     else
         return false;
 }