private static void Append(DiceExpression dice, ParseValues parseValues) { int constant = int.Parse(parseValues.Constant); if (parseValues.Multiplicity == 0) { dice.Constant(parseValues.Scalar * constant); } else { dice.Dice(parseValues.Multiplicity, constant, parseValues.Scalar, parseValues.Choose); } }