asp.net.ph

DateTime.Subtract Method

System Namespace   DateTime Structure


Subtracts the specified time or duration from this instance.

Overload List

1. Subtracts the specified date and time from this instance.

2. Subtracts the specified duration from this instance.


Example

The below code snippet demonstrates using the Subtract method and operator.

NOTE: This example shows how to use one of the overloaded versions of Subtract. For other examples that might be available, see the individual overload topics.

[ VB ]
Dim date1 As New System.DateTime ( 1996, 6, 3, 22, 15, 0 )
Dim date2 As New System.DateTime ( 1996, 12, 6, 13, 2, 0 )
Dim date3 As New System.DateTime ( 1996, 10, 12, 8, 42, 0 )

Dim diff1 As System.TimeSpan
' diff1 gets 185 days, 14 hours, and 47 minutes.
diff1 = date2.Subtract ( date1 )

Dim date4 As System.DateTime
' date4 gets 4/9/1996 5:55:00 PM.
date4 = date3.Subtract ( diff1 )

Dim diff2 As System.TimeSpan
' diff2 gets 55 days 4 hours and 20 minutes.
diff2 = System.DateTime.op_Subtraction ( date2, date3 )

Dim date5 As System.DateTime
' date5 gets 4/9/1996 5:55:00 PM.
date5 = System.DateTime.op_Subtraction ( date1, diff2 )

[ C# ]
         System.DateTime date1 = new System.DateTime ( 1996, 6, 3, 22, 15, 0 );
         System.DateTime date2 = new System.DateTime ( 1996, 12, 6, 13, 2, 0 );
         System.DateTime date3 = new System.DateTime ( 1996, 10, 12, 8, 42, 0 );

         // diff1 gets 185 days, 14 hours, and 47 minutes.
         System.TimeSpan diff1 = date2.Subtract ( date1 );

         // date4 gets 4/9/1996 5:55:00 PM.
         System.DateTime date4 = date3.Subtract ( diff1 );

         // diff2 gets 55 days 4 hours and 20 minutes.
         System.TimeSpan diff2 = date2 - date3;

         // date5 gets 4/9/1996 5:55:00 PM.
         System.DateTime date5 = date1 - diff2;
See Also

DateTime Members Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph