public static void Main()
char[] letters = { ',', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '1', '2', '3','4', '5','6', '7', '8', '9', '0'};
string[] morsecode = {" ", ". __", "__ ...", "_ . _ .", "_ ..", ".", ".. _ .", "_ _ .", "....", "..", ". _ _ _", "_ . _", ". _ ..", "_ _", "_ .", "_ _ _", ". _ _ .", "_ _ . _", ". _ .", "...", "_",
".. _", "... _", ". _ _", "_ .. _", "_ . _ _", "_ _ ..", ". _ _ _ _", ".. _ _ _", "... _ _", ".... _", ".....", "_ ....", "_ _ ...", "_ _ _ ..", "_ _ _ _ .", "_ _ _ _ _"};
Console.WriteLine("Enter the code you wish to convert to morse code... ");
sentence = Console.ReadLine();
sentence = sentence.ToLower ();
for(int i = 0; i < sentence.Length; i++)
for(int x = 0; < 37; x++)