Skip to main content

Posts

Showing posts with the label 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 c onsole 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();        ...