Write code for palindrome?

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


Please Help Members By Posting Answers For Below Questions

What is the use of system.environment class in c#.net?

709


What are partial types in c#?

638


What is getenumerator?

643


How do I register my code for use by classic com clients?

666


Differentiate between the public and private ?

731


What is the difference between static and private constructor?

688


What is the use of console application in c#?

669


What are the Configuration files in .net?

701


Explain about Destructor method?

716


Is inheritance possible in c sharp?

818


What are the 3 logical operators?

729


Explain 'structure padding'?

892


What is iqueryable?

639


How garbage collection deals with circular references.

622


What is eager loading in c#?

623