Click or drag to resize
ManipulateSetHour Method
Set the Hour of this dateTime to hour, leaving all other all other parts the same.

Namespace: MomentSharp
Assembly: MomentSharp (in MomentSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static DateTime SetHour(
	this DateTime dateTime,
	int hour,
	bool bubble = false
)

Parameters

dateTime
Type: SystemDateTime
this DateTime
hour
Type: SystemInt32
new hour
bubble (Optional)
Type: SystemBoolean
If set to true, it will bubble up the next part. E.g. 90 seconds becomes 1:30 minutes

Return Value

Type: DateTime
DateTime

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DateTime. 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