Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 are "class access modifiers" in C#?

952


What is a method c#?

973


How many keyword present in C# language ?

1006


What is the difference between readkey and readline in c#?

872


Explain the difference between private and shared assembly?

882


Can a struct have a default constructor (a constructor without parameters) or a destructor in c#?

965


What is arraylist class in c#?

1077


Which debugging tools you can use in the .NET ssSDK?

969


What does clr stand for?

906


What is the difference between static and private constructor?

981


What is the implicit name of the parameter that gets passed into the set method/property of a class?

920


How many types of collections are there in c#?

884


What is the difference between gettype and typeof in c#?

901


What is the difference between abstract and abstraction?

846


How many bytes is an int c#?

871