Calendar.AddTimeSpan
Overview¶
DateTimeOffset Calendar.AddTimeSpan ( dateTime, time )
Arguments¶
DateTimeOffset dateTime Specifies the base date time value.
String time The time parameter is in the "d.hhss" format
Remarks¶
Please make sure that you are using the right calendar object, since adding time is related with your calendar of choice. You can have more info on Calendar definitions by checking the $Calendar object.
Examples¶
//Adds exactly 1 day, 2 hours, 30 minutes and 45 seconds to the current time. var newDate = $Calendar.StandardCalendar.AddTimeSpan($Calendar.Today, '1.02:30:45');