Click or drag to resize
DateTimeExtensionsSetTime Method (DateTime, Int32, Int32)
Sets the time of the current date with minute precision

Namespace: Entelect.Extensions
Assembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntax
C#
public static DateTime SetTime(
	this DateTime input,
	int hour,
	int minute
)

Parameters

input
Type: SystemDateTime
The current date
hour
Type: SystemInt32
The hour
minute
Type: SystemInt32
The minute

Return Value

Type: DateTime
The input date at specified time

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