using System.Collections.Generic;
public static void Main()
char [] input = {'.','N','E','T','4','.','7','.','2'};
Console.WriteLine("Converted all the characters to lower case.");
for (int i = 0; i < input.Length; i++)
var result = input[i].ToLower();
Console.WriteLine("{0} : {1} ", input[i], result);