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 the difference between paramaterized constructor and copy constructor?
What is the CTS, and how does it relate to the CLS?
How can I get around scope problems in a try/catch?
Why do we need interfaces in c#?
What is difference between throw and throws in c#?
What is the purpose of a constructor in c#?
what is collections in .net? why we use?
What is hash c#?
What is the delegate in c#?
What is Reflection in .NET? Namespace? How will you load an assembly which is not referenced by current assembly?
What are the value types in c#?
What are the different types of delegation?
how to sort an array in c#
List down the access modifiers available in c#?
What is variable and its classification?