Answer Posted / rajender
private bool CheckPalindrome(string myString)
{
int First;
int Second;
First = 0;
Second = myString.Length - 1;
while (First < Second)
{
if(myString.Substring(First,1) == myString.Substring
(Second,1))
{
First ++;
Second --;
}else{
return false;
}
}
return true;
}
Is This Answer Correct ? | 17 Yes | 6 No |
Post New Answer View All Answers
What is the use of system.environment class in c#.net?
What are partial types in c#?
What is getenumerator?
How do I register my code for use by classic com clients?
Differentiate between the public and private ?
What is the difference between static and private constructor?
What is the use of console application in c#?
What are the Configuration files in .net?
Explain about Destructor method?
Is inheritance possible in c sharp?
What are the 3 logical operators?
Explain 'structure padding'?
What is iqueryable?
How garbage collection deals with circular references.
What is eager loading in c#?