Create a TimeSpan instance, specifying the number of ticks : TimeSpan : Date Time C# Examples


C# Examples » Date Time » TimeSpan »

 

Create a TimeSpan instance, specifying the number of ticks


  1.       
  2. using  System;  
  3.   
  4. class  MainClas  
  5. {  
  6.     public  static  void  Main()  
  7.     {  
  8.           
  9.           
  10.         long  ticks  =  300;  
  11.         TimeSpan  myTimeSpan4  =  new  TimeSpan(ticks);  
  12.         Console.WriteLine("myTimeSpan4  =  "  +  myTimeSpan4);  
  13.     }  
  14. }  
  15.       
  16.      
  17.     
  18.      

Output

myTimeSpan4 = 00:00:00.0000300


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Date Time
» TimeSpan