CostPerUse

Rsc.CostPerUse field

The cost that accrues every time that a resource is used.

public static readonly Key<decimal, RscKey> CostPerUse;

Examples

Shows how to read/write Rsc.CostPerUse property.

var project = new Project();

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

resource.Set(Rsc.CostPerUse, 9);

Console.WriteLine("Cost Per Use: " + resource.Get(Rsc.CostPerUse));

See Also