Contact: aviboots(AT)netvision.net.il
40,026 questions
51,982 answers
573 users
using System; class Program { static void Main() { int[] arr = new int[] {5, 9, 0, 3, 2, 8}; int length = arr.Length; Console.WriteLine(length); } } /* run: 6 */