Esempio n. 1
0
 public LocalizedDateTime AddHours(int value)
 {
     return(PrimitiveDateTime.AddHours(value));
 }
Esempio n. 2
0
 public bool Equals(LocalizedDateTime other)
 {
     return(PrimitiveDateTime.Equals(other.PrimitiveDateTime));
 }
Esempio n. 3
0
 public override int GetHashCode()
 {
     return(PrimitiveDateTime.GetHashCode());
 }
Esempio n. 4
0
 public LocalizedDateTime TruncateTime()
 {
     return(PrimitiveDateTime.Subtract(PrimitiveDateTime.TimeOfDay));
 }