Use the Subtract() method to subtract a TimeSpan instance from another : TimeSpan : Date Time C# Examples


C# Examples » Date Time » TimeSpan »

 

Use the Subtract() method to subtract a TimeSpan instance from another









    
using  System;

class  MainClas
{
    public  static  void  Main()
    {
        TimeSpan  myTimeSpan13  =  new  TimeSpan(1,  10,  13);
        TimeSpan  myTimeSpan14  =  new  TimeSpan(2,  6,  10);
        TimeSpan  myTimeSpan15  =  myTimeSpan13.Subtract(myTimeSpan14);
        Console.WriteLine("myTimeSpan15  =  "  +  myTimeSpan15);
    }
}
    
   
  
   



Output

myTimeSpan15 = -00:55:57


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Date Time
» TimeSpan