A simple string extension library for detecting Palindromes.
string input = "racecar";
bool isPalindrome = input.IsPalindrome(); // true
[!IMPORTANT] The library does not treat single characters as palindromes.
string input = "a";
bool isPalindrome = input.IsPalindrome(); // false
All Unit Tests can be found under the Palindrome.Tests namespace.
Available on: