I have problem with the code below this text. It doesn't show any decimals, only the number 0. Can someone help me to correct this code, so it shows also the decimals. In this case it enough with 2 decimals.
double answerCount;
answerCount = 5 / 20;
answerCount = Math.Round((Double)answerCount, 2);
double answerCount;
answerCount = 5 / 20;
answerCount = Math.Round((Double)answerCount, 2);