public static void Main()
Console.WriteLine("Please enter the string you wish to test!");
String test = Console.ReadLine();
string lowertest = test.ToLower();
char[] charArray = lowertest.ToCharArray();
Array.Reverse(charArray);
string reversedtest = new string(charArray);
if (lowertest == reversedtest){
Console.WriteLine("The string is a palidrome");
Console.WriteLine("The string is not a palidrome");