예제 #1
0
파일: JwTime.cs 프로젝트: pabplanalp/pvmail
 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;
 }
예제 #2
0
파일: JwTime.cs 프로젝트: pabplanalp/pvmail
 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;
 }