ActualCost

Rsc.ActualCost field

Costs incurred for work already performed by resources on their tasks, along with any other recorded costs associated with the task.

public static readonly Key<decimal, RscKey> ActualCost;

Examples

Shows how to read/write Rsc.ActualCost property.

var project = new Project();

var resource = project.Resources.Add("Resource");

resource.Set(Rsc.ActualCost, 10m);

Console.WriteLine("Actual Cost: " + resource.Get(Rsc.ActualCost));

See Also