Description |
Adds a number of Seconds to the current object datetime, returning the result.
You can subtract by specifying a negative number, or using the Subtract method.
|
|
Notes |
Like a lot of datetime methods, the datetime object itself is not affected - the modified datetime is returned for assignment.
|
|
Microsoft MSDN Links |
System
System.DateTime
|
|
Author links |
Buy Website Traffic at Buywebsitetrafficexperts.com
Buy Proxies at Buyproxies.io
|
|
|
A simple example |
program Project1;
{$APPTYPE CONSOLE}
var
time : DateTime;
begin time := Datetime.Create(2004, 6, 20, 08, 30, 0); // 08:30 on June 20 2004
Console.WriteLine('Time at the start = {0:F}', time);
time := time.AddSeconds(317); // 5 minutes 17 seconds
Console.WriteLine('With 317 seconds added = {0:F}', time);
Console.ReadLine;
end.
|
Time at the start = 20 June 2004 08:30:00
With 317 seconds added = 20 June 2004 08:35:17
|
|
|
|