Exemplo n.º 1
0
 public static JwTime CreateTime(int hh, int mm, int ss, int ms)
 {
     JwTime t;
     t = new JwTime();
     t.Set(hh, mm, ss, ms);
     return t;
 }
Exemplo n.º 2
0
 public static JwTime CreateTime(DateTime dt)
 {
     // kludge (err) - need to learn how to check DateTime for empty
     //if ( dt == null ) return null;
     JwTime t = new JwTime();
     t.Set(dt);
     return t;
 }