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:
var finalScore = int.Parse(array .Select(x => x.ToString()) .Aggregate((prev, next) => prev + next));