I have just started C# but I can't figure out how you add all the values in a list.
For example, if you have:
List<int> values = new List<int> { 1, 2, 4, 8, 5, 10 };
How can I add every single value in this list, without manually putting it into a calculator?