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
Wht executescaler method is used?
Why would you use untrusted verification?
Explain metadata in c#.
Why do we use generics in c#?
What is serialization and deserialization in c# with example?
What is array and its types in c#?
Can we inherit sealed class in c#?
what are the differences between a class and structure
What is the difference between final finally and finalize in c#?
What is an inheritance ?Give an example in which inheritance is used?
Can we have two main methods in c#?
Is c# scripting language?
What is out int in c#?
What are satellite assemblies? How will you get the different language strings?
In .NET how can you solve the DLL Hell problem?