What I would like to learn how to do is to convert an int array to an int in C#.
However I want to append the int with the values from the array.
Example:
simply multiply each number with 10^ his place in the array.
int[] array = { 5, 6, 2, 4 }; int finalScore = 0; for (int i = 0; i < array.Length; i++) { finalScore += array[i] * Convert.ToInt32(Math.Pow(10, array.Length-i-1)); }