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 is difference between list and dictionary in c#?
What is a thread? What is multithreading?
What does int32 mean?
What is application object in c#?
What is difference between private and static constructor?
What is an ienumerable in c#?
What is boxing? Explain its functionality?
What is cosole application?
Explain the difference between Response.Write () and Response.Output.Write ().
Why are c# strings immutable?
What is cache memory in c#?
What is difference between hashtable and dictionary in c#?
how background thread access to ui control?
Is int reference type c#?
What is a private method in c#?