Beispiel #1
0
 public static JwTimestamp CreateNowUtc(int utcOffset)
 {
     JwTimestamp ts = new JwTimestamp();
     ts.SetNowUtc();
     ts.SubtractHours(utcOffset);
     return ts;
 }
Beispiel #2
0
 public static JwTimestamp CreateNowUtc()
 {
     JwTimestamp ts = new JwTimestamp();
     ts.SetNowUtc();
     return ts;
 }