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
Explain concurrency with aop?
How do I open the console window?
What is before string in c#?
When do we generally use destructors to release resources?
What are the advantages of clr procedure over t-sql procedure?
What is strong name in c# and how can we use it?
What is the use of console readline () in c#?
What is a clr host?
What is difference between float and decimal?
Will the following code compile and run?
How does dll hell solve in .net?
Why do we need singleton class in c#?
List down the fundamental oop concepts?
How many bytes is an int in c#?
What is the root element of an xml file?