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