public static void Main()
Console.WriteLine("Please put the string you would like to test");
string testt = Console.ReadLine();
string Lowertest = testt.ToLower();
char[] charArray = Lowertest.ToCharArray();
Array.Reverse(charArray);
string Invertedtest = new string(charArray);
if (Lowertest == Invertedtest){
Console.WriteLine("Nice, your string is a palindrome");
Console.WriteLine("Wow well done.., your string is not a palindrome");