Initializes a new instance of the TimeOfDay structure to a specified number of days, hours, minutes, seconds, and milliseconds.

Namespace:  DlhSoft.Windows.Data
Assembly:  DlhSoft.ProjectData.GanttChart.LightWPF.Controls (in DlhSoft.ProjectData.GanttChart.LightWPF.Controls.dll)

Syntax

C#
public TimeOfDay(
	int days,
	int hours,
	int minutes,
	int seconds,
	int milliseconds
)
Visual Basic (Declaration)
Public Sub New ( _
	days As Integer, _
	hours As Integer, _
	minutes As Integer, _
	seconds As Integer, _
	milliseconds As Integer _
)

Parameters

days
Type: System..::.Int32
Number of days.
hours
Type: System..::.Int32
Number of hours.
minutes
Type: System..::.Int32
Number of minutes.
seconds
Type: System..::.Int32
Number of seconds.
milliseconds
Type: System..::.Int32
Number of milliseconds.

See Also