public static DateTime GetDate(this GPSPoint me, DateTime def) { return(me == null ? def : me.Date); }
public static DateTime GetDate(this GPSPoint me) { return(me == null ? new DateTime(2000, 1, 1, 1, 1, 1, DateTimeKind.Utc) : me.Date); }