Model.Recipe.CalculateUse C# (CSharp) Method

CalculateUse() private method

private CalculateUse ( double amought ) : void
amought double
return void
        private void CalculateUse(double amought)
        {
            double setProductionSize = 5000;
            for (int i = 0; i < IList.Count; i++)
            {
                double temp = 0;
                double.TryParse(IList[i][1], out temp);
                temp = temp * setProductionSize * amought;
                IList[i][1] = temp.ToString();
            }
        }
        public override string ToString()