2 Metode ekstensi untuk solusi yang disebutkan di atas
public static bool LiesAfterIgnoringMilliseconds(this DateTime theDate, DateTime compareDate, DateTimeKind kind)
{
DateTime thisDate = new DateTime(theDate.Year, theDate.Month, theDate.Day, theDate.Hour, theDate.Minute, theDate.Second, kind);
compareDate = new DateTime(compareDate.Year, compareDate.Month, compareDate.Day, compareDate.Hour, compareDate.Minute, compareDate.Second, kind);
return thisDate > compareDate;
}
public static bool LiesAfterOrEqualsIgnoringMilliseconds(this DateTime theDate, DateTime compareDate, DateTimeKind kind)
{
DateTime thisDate = new DateTime(theDate.Year, theDate.Month, theDate.Day, theDate.Hour, theDate.Minute, theDate.Second, kind);
compareDate = new DateTime(compareDate.Year, compareDate.Month, compareDate.Day, compareDate.Hour, compareDate.Minute, compareDate.Second, kind);
return thisDate >= compareDate;
}
pemakaian:
bool liesAfter = myObject.DateProperty.LiesAfterOrEqualsIgnoringMilliseconds(startDateTime, DateTimeKind.Utc);
string
representasi terformat dari aDateTime
, mungkin diperlukan pengeditan untuk menjelaskan bahwa untuk "memotong" / "drop" milidetik berarti "menghasilkanDateTime
nilai di mana semua komponen tanggal / waktu yang sama kecualiTimeOfDay.TotalMilliseconds
adalah0
." Orang-orang tidak membaca, tentu saja, tetapi hanya untuk menghilangkan ambiguitas.