You didn't call your method. At line 19 you are writing out the abbreviation. Try:
Console.WriteLine("State is {0}", FromAbbreviation(abr));
In addition, you are already comparing to lower text switch(abr.ToLower().Trim())
at line 24, so all of those case
labels you have for checking upper-case abbreviations will never test true--you can remove them.