Write code for palindrome?

Answer Posted / sathish

private bool CheckPalindrome(string myString)
{
string strrevs="";
foreach char c in myString
{
strrevs= c + strrevs;
}

if (strrevs==myString)

return true;
else
return false;
}

Is This Answer Correct ?    29 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between paramaterized constructor and copy constructor?

689


What is the CTS, and how does it relate to the CLS?

733


How can I get around scope problems in a try/catch?

657


Why do we need interfaces in c#?

642


What is difference between throw and throws in c#?

617


What is the purpose of a constructor in c#?

651


what is collections in .net? why we use?

1876


What is hash c#?

661


What is the delegate in c#?

653


What is Reflection in .NET? Namespace? How will you load an assembly which is not referenced by current assembly?

708


What are the value types in c#?

707


What are the different types of delegation?

628


how to sort an array in c#

740


List down the access modifiers available in c#?

646


What is variable and its classification?

702