Calculation based on the TimeSpan : TimeSpan « Date Time « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Date Time » TimeSpanScreenshots 
Calculation based on the TimeSpan
Calculation based on the TimeSpan
  

using System;

class Test
{
    public static void Main()
    {
        // Create a TimeSpan representing 6.5 days.
        TimeSpan timespan1 = new TimeSpan(61200);

        // Create a TimeSpan representing 0.5 days.
        TimeSpan timespan2 = new TimeSpan(01200);

        TimeSpan oneWeek = timespan1 + timespan2;

        DateTime now = DateTime.Now;

        DateTime past = now - oneWeek;

        // Create a DateTime representing 1 week in the future.
        DateTime future = now + oneWeek;

        // Display the DateTime instances.
        Console.WriteLine("Now   : {0}", now);
        Console.WriteLine("Past  : {0}", past);
        Console.WriteLine("Future: {0}", future);
    }
}


           
         
    
  
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.Subtract 15 minutes from the current TimeSpan and print the result
9.Measuring the Time Taken to Add Some Numbers
10.Use FromDays(), FromHours(), FromMinutes(), FromSeconds(), FromMilliseconds(), and FromTicks() methods to create new TimeSpan instances
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.Create a TimeSpan instance, specifying the hours, minutes, and seconds
17.Create a TimeSpan instance, specifying the days, hours, minutes, and seconds
18.Create a TimeSpan instance, specifying the days, hours, minutes, seconds, and milliseconds
19.Create a TimeSpan instance, specifying the number of ticks
20.Display the properties for myTimeSpan
21.Initalize a timespan to 25 milliseconds
22.Custom TimeSpan Format Strings
23.Create TimeSpan value from seconds
24.TimeSpan calculations
25.Create a new TimeSpan to a specified number of hours, minutes, and seconds.
26.Create a new TimeSpan to a specified number of days, hours, minutes, and seconds.
27.Create a TimeSpan to a specified number of days, hours, minutes, seconds, and milliseconds.
28.Create a new TimeSpan to the specified number of ticks.
29.Zero TimeSpan
30.Default output of ToString() method
31.Subtract one DateTime from another you get a TimeSpan
32.Elapsed Time Today with TimeSpan
33.Get properties of TimeSpan
34.Returns a new TimeSpan object whose value is the absolute value of the current TimeSpan object.
35.Example of the TimeSpan relational operators.
36.Get a TimeSpan that represents a specified number of days
37.Create a TimeSpan that represents a specified number of hours
38.Returns a TimeSpan that represents a specified number of milliseconds.
39.Returns a TimeSpan that represents a specified number of minutes
40.Create a TimeSpan that represents a specified number of seconds
41.Create a TimeSpan from units of ticks.
42.Predefined TimeSpan value:MaxValue, MinValue, Zero, TicksPerDay, TicksPersHour
43.Converts string to TimeSpan
44.Converts string to TimeSpan by using the specified format and culture-specific format information.
45.Convert TimeSpan in whole and fractional days
46.Gets the value of TimeSpan in whole and fractional hours.
47.Gets the value of TimeSpan in whole and fractional milliseconds.
48.Gets the value of TimeSpan in whole and fractional minutes.
49.Gets the value of TimeSpan in whole and fractional seconds.
www_.j__av_a__2__s.__c__om__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.