예제 #1
0
파일: GPSPoint.cs 프로젝트: jesumarquez/lt
 public static DateTime GetDate(this GPSPoint me, DateTime def)
 {
     return(me == null ? def : me.Date);
 }
예제 #2
0
파일: GPSPoint.cs 프로젝트: jesumarquez/lt
 public static DateTime GetDate(this GPSPoint me)
 {
     return(me == null ? new DateTime(2000, 1, 1, 1, 1, 1, DateTimeKind.Utc) : me.Date);
 }