Gets the start date and time of a task that would finish at a specified date and time and would have a specified effort based on the current schedule.

Namespace:  DlhSoft.Windows.Data
Assembly:  DlhSoft.ProjectData.Core (in DlhSoft.ProjectData.Core.dll)

Syntax

C#
public DateTime GetStart(
	DateTime finish,
	TimeSpan effort,
	Schedule[] schedules
)
Visual Basic (Declaration)
Public Function GetStart ( _
	finish As DateTime, _
	effort As TimeSpan, _
	schedules As Schedule() _
) As DateTime

Parameters

finish
Type: System..::.DateTime
The finish date and time of the task.
effort
Type: System..::.TimeSpan
The effort of the task.
schedules
Type: array< DlhSoft.Windows.Data..::.Schedule >[]()[]
An optional set of supplementary schedule constraints.

Return Value

The start date and time of the task based on the current schedule.

See Also