Skip to content

Instantly share code, notes, and snippets.

namespace PalindromeGist
{
struct Program
{
public static bool Espalindromo(string word)
{
char[] origin = word.ToCharArray();
for (int i = 0; i < word.Length; i++)
{
if (origin[i] != origin[(origin.Length - 1) - i])