Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 answers
573 users
using System; class Program { static void Main() { DateTime date1 = new DateTime(2023, 8, 14, 09, 20, 32); DateTime date2 = new DateTime(2023, 8, 15, 09, 20, 32); TimeSpan ts = date2 - date1; Console.WriteLine(ts.TotalMinutes); } } /* run: 1440 */