Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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's new in c#?

952


What is concrete class in c#?

950


What is the benefit of interface in c#?

1005


What do you mean by for each loop?

965


What is data set in c#?

977


What is Co- and Contra-Variance in C#?

1027


What is an assembly in dotnet?

1046


What problem does Delegate Solve?

1053


Explain the steps to create satellite assembly?

950


What is datareader c#?

969


What is int tryparse in c#?

996


Why delegates are type safe in c#?

930


What method is used to sort the elements of the array in descending order?

992


What is generic delegate in c#?

978


Is void a class?

926