| |
Use FromDays(), FromHours(), FromMinutes(), FromSeconds(), FromMilliseconds(), and FromTicks() methods to create new TimeSpan instances |
|
using System;
class MainClass {
public static void Main() {
TimeSpan myTimeSpan5 = TimeSpan.FromDays(5);
Console.WriteLine("TimeSpan.FromDays(5) = " + myTimeSpan5);
TimeSpan myTimeSpan6 = TimeSpan.FromHours(10);
Console.WriteLine("TimeSpan.FromHours(10) = " + myTimeSpan6);
TimeSpan myTimeSpan7 = TimeSpan.FromMinutes(30);
Console.WriteLine("TimeSpan.FromMinutes(30) = " + myTimeSpan7);
TimeSpan myTimeSpan8 = TimeSpan.FromSeconds(15);
Console.WriteLine("TimeSpan.FromSeconds(15) = " + myTimeSpan8);
TimeSpan myTimeSpan9 = TimeSpan.FromMilliseconds(200);
Console.WriteLine("TimeSpan.FromMilliseconds(200) = " + myTimeSpan9);
TimeSpan myTimeSpan10 = TimeSpan.FromTicks(500);
Console.WriteLine("TimeSpan.FromTicks(500) = " + myTimeSpan10);
}
}
|
|
|
Related examples in the same category |
1. | new TimeSpan(2, 12, 0, 0) | | | 2. | TimeSpan.TicksPerDay | | | 3. | Initialize a time span to zero | | | 4. | Initialize a time span to 14 days | | | 5. | Initialize a time span to 1:02:03 | | | 6. | Initialize a time span to 250 milliseconds | | | 7. | Initalize a time span to 99 days, 23 hours, 59 minutes, and 59.9999999 seconds | | | 8. | Calculation based on the TimeSpan | | | 9. | Subtract 15 minutes from the current TimeSpan and print the result | | | 10. | Measuring the Time Taken to Add Some Numbers | | | 11. | Use the Parse() method to convert strings to TimeSpan instances | | | 12. | Use the Add() method to add a TimeSpan instance to another | | | 13. | Use the Subtract() method to subtract a TimeSpan instance from another | | | 14. | Use the Duration() method to add two TimeSpan instances | | | 15. | Use the Negate() method to add two TimeSpan instances | | | 16. | Use the Parse() method to convert strings to TimeSpan instances | | | 17. | Create a TimeSpan instance, specifying the hours, minutes, and seconds | | | 18. | Create a TimeSpan instance, specifying the days, hours, minutes, and seconds | | | 19. | Create a TimeSpan instance, specifying the days, hours, minutes, seconds, and milliseconds | | | 20. | Create a TimeSpan instance, specifying the number of ticks | | | 21. | Display the properties for myTimeSpan | | | 22. | Initalize a timespan to 25 milliseconds | | |
|