[.NET] DateTime.Compare, 두 날짜를 비교해 빠른지, 같은지, 늦은지 나타냄
DateTime.Compare 메서드는 두 날짜를 비교하고 첫 번째 날짜가 두 번째보다 빠른지, 같은지, 늦은지를 나타내는 정수를 반환합니다. public static int Compare (DateTime t1, DateTime t2); // t1 첫 번째 날짜 // t2 두 번째 날짜 t1이 t2보다 이전인 경우 DateTime.Compare(DateTime.Now.AddDays(-1), DateTime.Now) -1 t1이 t2와 같은 경우 DateTime.Compare(DateTime.Now, DateTime.Now) 0 t1이 t2보다 나중인 경우 DateTime.Compare(DateTime.Now.AddDays(1), DateTime.Now) 1 사용법 A. 두 날짜 비교 DateTime t..
.NET
2021. 8. 29. 14:00