for loop csharp to print times tables

Code Example - for loop csharp to print times tables

                
                        int[] allNums = { 1, 2, 3, 4, 5 };int index = 0;while (index <= 5){  Console.WriteLine(%%%~COMPRESS~PRE~0~%%%quot;Last index {allNums[index]}");  index++;}