Welcome Coders!
static bool isPalindrome(string word) { string rword = ""; foreach (var c in word) rword = c + rword; return rword.ToUpper() == word.ToUpper() ? true : false ; }