コード例 #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);
 }