How to check a given string is palindrome or not in C#.NET?Fig.1 String PalindromeProgram StepsGet a stringReverse it.Compare the original string with Reverse string.If True then Palindrome other wise not a palindrome.InputINDIAOutputINDIAAIDNISTRING IS NOT PALINDROMEProgramusing System;using System.Linq;using System.Collections.Generic;using System.Text;namespace CsharpProgram{ class Program { public static void Main(string[] args) { ...