Phương thức DateTime.Compare () trong C # được sử dụng để so sánh hai phiên bản DateTime. Nó trả về một giá trị số nguyên,
- <0 - Nếu date1 sớm hơn date2
- 0 - Nếu date1 giống date2
- > 0 - Nếu date1 muộn hơn date2
Cú pháp
Sau đây là cú pháp -
public static int Compare (DateTime d1, DateTime d2);
Ở trên, d1 và d2 là hai ngày được so sánh.
Ví dụ
Bây giờ chúng ta hãy xem một ví dụ để triển khai phương thức DateTime.Compare () -
using System; public class Demo { public static void Main(){ DateTime d1 = new DateTime(2019, 11, 20, 6, 20, 40); DateTime d2 = d1.AddYears(5); Console.WriteLine("Initial DateTime = {0:dd} {0:y}, {0:hh}:{0:mm}:{0:ss} ", d1); Console.WriteLine("New DateTime (adding years) = {0:dd} {0:y}, {0:hh}:{0:mm}:{0:ss} ", d2); int res = DateTime.Compare(d1, d2); // returns <0 since d1 is earlier than d2 Console.WriteLine(res); } }
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Initial DateTime = 20 November 2019, 06:20:40 New DateTime (adding years) = 20 November 2024, 06:20:40 -1
Ví dụ
Bây giờ chúng ta hãy xem một ví dụ khác để triển khai phương thức DateTime.Compare () -
using System; public class Demo { public static void Main(){ DateTime d1 = new DateTime(2019, 11, 20, 6, 20, 40); DateTime d2 = new DateTime(2019, 11, 20, 6, 20, 40); Console.WriteLine("DateTime 1 = {0:dd} {0:y}, {0:hh}:{0:mm}:{0:ss} ", d1); Console.WriteLine("DateTime 2 = {0:dd} {0:y}, {0:hh}:{0:mm}:{0:ss} ", d2); int res = DateTime.Compare(d1, d2); // returns equal to 0 since d1 is equal to d2 Console.WriteLine(res); } }
Đầu ra
Điều này sẽ tạo ra kết quả sau -
DateTime 1 = 20 November 2019, 06:20:40 DateTime 2 = 20 November 2019, 06:20:40 0