I have the following list:
List<string> scores = new List<string>
{
"1 point",
"2 points",
"5 points",
"10 points",
"15 points",
"20 points",
"25 points",
"30 points",
"40 points",
"50 points"
};
My code GUI selects one of these and returns a value from 0 to 9.
How can I convert return a number from 1 to 50 given the 0-9 number?