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
What's new in c#?
What is concrete class in c#?
What is the benefit of interface in c#?
What do you mean by for each loop?
What is data set in c#?
What is Co- and Contra-Variance in C#?
What is an assembly in dotnet?
What problem does Delegate Solve?
Explain the steps to create satellite assembly?
What is datareader c#?
What is int tryparse in c#?
Why delegates are type safe in c#?
What method is used to sort the elements of the array in descending order?
What is generic delegate in c#?
Is void a class?