Example #1
0
 public static JwTimestamp CreateTimestamp(DateTime x)
 {
     // kludge (err) - need to learn how to check DateTime for empty
     //if ( dt == null ) return null;
     JwTimestamp ts = new JwTimestamp();
     ts.Set(x);
     return ts;
 }