Hello,
I'm writing a program that compares two percentages and I need them to be rounded up or down depending on their number.. I have used this:
percentage[i] = Math.Round ((analysis[i] * 100) / char_count);
Bit it throws an error that it's too ambiguous.. Now the "analysis" is a double type and char_count is an integer.
Anyone make any suggestions? Thanks :)