Check if a string is a palindrome

Just for fun:

return myString.SequenceEqual(myString.Reverse());

Leave a Comment