Функция возвращает количество элементов последовательности, тип возвращаемого значения int.
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.Count(); Console.WriteLine("{0} - тип {1}", val, val.GetType()); 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.Count(); Console.WriteLine("{0} - тип {1}", val, val.GetType()); Console.ReadKey(); return 0; } }
10 - тип System.Int32