Click or drag to resize

DateTimeOperationsRoundToMinutes Method (TimeSpan, FuncDouble, Double)

Rounds the time span so it does not contain any fractional minutes.

Namespace:  TomsToolbox.Essentials
Assembly:  TomsToolbox.Essentials (in TomsToolbox.Essentials.dll)
Syntax
public static TimeSpan RoundToMinutes(
	this TimeSpan timeSpan,
	Func<double, double> roundingOperation
)

Parameters

timeSpan
Type: SystemTimeSpan
The time span.
roundingOperation
Type: SystemFuncDouble, Double
The rounding operation that rounds the minutes.

Return Value

Type: TimeSpan
The time span with no fractional minutes.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type TimeSpan. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also