CostVariance

Rsc.CostVariance field

The difference between the baseline cost and total cost for a resource.

public static readonly Key<double, RscKey> CostVariance;

Examples

Shows how to read/write Rsc.CostVariance property.

var project = new Project();

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

resource.Set(Rsc.CostVariance, 10);

Console.WriteLine("Cost Variance: " + resource.Get(Rsc.CostVariance));

See Also