CurrentDate

Prj.CurrentDate field

The system date.

public static readonly Key<DateTime, PrjKey> CurrentDate;

Examples

Shows how to read/write Prj.CurrentDate property.

var project = new Project();

project.Set(Prj.CurrentDate, new DateTime(2020, 4, 10, 8, 0, 0));

Console.WriteLine("Current Date: " + project.Get(Prj.CurrentDate));

See Also