Contact: aviboots(AT)netvision.net.il
39,940 questions
51,877 answers
573 users
using System; namespace ConsoleApplication_C_Sharp { class Program { static void Main(string[] args) { var arr1 = new int[] { }; Console.WriteLine(arr1.Length); var arr2 = new int[0]; Console.WriteLine(arr2.Length); } } } /* run: 0 0 */