Computer >> Máy Tính >  >> Lập trình >> C#

Chương trình C # để thêm hai khoảng thời gian

Đầu tiên, đặt hai TimeSpans -

TimeSpan t1 = TimeSpan.FromMinutes(1);
TimeSpan t2 = TimeSpan.FromMinutes(2);

Để thêm nó, hãy sử dụng phương thức Add () -

TimeSpan res = t1.Add(t2);

Ví dụ

Using System;
using System.Linq;
public class Demo {
   public static void Main() {
      TimeSpan t1 = TimeSpan.FromMinutes(1);
      TimeSpan t2 = TimeSpan.FromMinutes(2);
      Console.WriteLine("First TimeSpan: "+t1);
      Console.WriteLine("Second TimeSpan: "+t2);
      // Adding
      TimeSpan res = t1.Add(t2);
      Console.WriteLine("Resultant TimeSpan: "+res);
   }
}