Skip to content

Array

Basic 1 D Array

   int[] a = { 0, 1, 2 };
   foreach (var num in a)
   {
       Console.WriteLine(num);
   }