Функция возвращает сумму всех элементов последовательности.
Main.cs
using System; //добавить ссылку using System.Linq; class Program { public static int Main() { int[] ara = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; int val = ara.Sum(); Console.WriteLine(val); Console.ReadKey(); return 0; } }
using System; //добавить ссылку using System.Linq; class Program { public static int Main() { int[] ara = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; int val = ara.Sum(); Console.WriteLine(val); Console.ReadKey(); return 0; } }
55