TimeOnly.Add Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Add(TimeSpan) |
Returns a new TimeOnly that adds the value of the specified time span to the value of this instance. |
Add(TimeSpan, Int32) |
Returns a new TimeOnly that adds the value of the specified time span to the value of this instance. If the result wraps past the end of the day, this method returns the number of excess days as an out parameter. |
Add(TimeSpan)
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
Returns a new TimeOnly that adds the value of the specified time span to the value of this instance.
public:
TimeOnly Add(TimeSpan value);
public TimeOnly Add (TimeSpan value);
member this.Add : TimeSpan -> TimeOnly
Public Function Add (value As TimeSpan) As TimeOnly
Parameters
- value
- TimeSpan
A positive or negative time interval.
Returns
An object whose value is the sum of the time represented by this instance and the time interval represented by value.
Applies to
Add(TimeSpan, Int32)
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
- Source:
- TimeOnly.cs
Returns a new TimeOnly that adds the value of the specified time span to the value of this instance. If the result wraps past the end of the day, this method returns the number of excess days as an out parameter.
public:
TimeOnly Add(TimeSpan value, [Runtime::InteropServices::Out] int % wrappedDays);
public TimeOnly Add (TimeSpan value, out int wrappedDays);
member this.Add : TimeSpan * int -> TimeOnly
Public Function Add (value As TimeSpan, ByRef wrappedDays As Integer) As TimeOnly
Parameters
- value
- TimeSpan
A positive or negative time interval.
- wrappedDays
- Int32
When this method returns, contains the number of excess days, if any, that resulted from wrapping during this addition operation.
Returns
An object whose value is the sum of the time represented by this instance and the time interval represented by value.