public void AddNewConstant(string name, double value) { Constant constant = new Constant(name, value); UserConstants.Add(constant); }
public void AddNewConstant(Constant constant) { UserConstants.Add(constant); }