palindrome program in c# using string

palindrome program in c# using string

Hello everyone, I am going to share the code sample for the palindrome using c# with console application as given below.

/// <summary>
/// This is used for check the input string is Palindrome or not?
/// </summary>


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
   public class IsPalindrome
    {
        static void Main(string[] args)
        {
            string PalindromeStr = string.Empty;
            Console.WriteLine("Enter a String");

            string str = Console.ReadLine();
            int m = str.Length;

            for (int n = m - 1; n >= 0; n--)
            {
                PalindromeStr = PalindromeStr + str[n];
            }

            if (PalindromeStr == str)
            {
                Console.WriteLine(str + " is a valid palindrome.");
            }
            else
            {
                Console.WriteLine(str + " is not a valid palindrome.");
            }
            Console.WriteLine(PalindromeStr);
            Console.Read();
        }
    }

}

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

palindrome program in c# using string palindrome program in c# using string Reviewed by Anil Singh on 12:56 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^