C# DateTime AddSeconds
Description
DateTime AddSeconds
returns a new DateTime that adds
the specified number of seconds to the value of this instance.
Syntax
DateTime.AddSeconds
has the following syntax.
public DateTime AddSeconds(
double value
)
Parameters
DateTime.AddSeconds
has the following parameters.
value
- A number of whole and fractional seconds. The value parameter can be negative or positive.
Returns
DateTime.AddSeconds
method returns An object whose value is the sum of the date and time represented by this instance
and the number of seconds represented by value.
Example
The following code shows how to use DateTime.AddSeconds
.
//www . ja va2s. c om
using System;
public class Example
{
public static void Main()
{
DateTime dateValue = new DateTime(2013, 9, 15, 12, 0, 0);
Console.WriteLine(dateValue.AddSeconds(30));
}
}
The code above generates the following result.