Ejemplo n.º 1
0
 public static RubyTime /*!*/ SwitchToUtc(RubyTime /*!*/ self)
 {
     self.SetDateTime(self.ToUniversalTime());
     return(self);
 }
Ejemplo n.º 2
0
 public static RubyTime /*!*/ ToLocalTime(RubyTime /*!*/ self)
 {
     self.SetDateTime(self.ToLocalTime());
     return(self);
 }
Ejemplo n.º 3
0
 public static RubyTime /*!*/ InitializeCopy(RubyTime /*!*/ self, [NotNull] RubyTime /*!*/ other)
 {
     self.SetDateTime(other.DateTime);
     return(self);
 }