I want to have the user say how many decimal points they want to display, I am trying to use format specifiers like {0:F2}
but when I try something like
Console.WriteLine("{0} added to {1} is {2:F{3}}", Num1, Num2, Answer, DP);
it doesn't work, how do I do it?