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...

i have a string aabccefsdss.how can i get the string abcefsd.
or write the fallowing string with only character
occurrence of once .

Answer Posted / dinesh

string s = "aabccefsdss";
char[] a = s.ToCharArray();
string d="";
foreach (char c in a)
{
if (!d.Contains(c.ToString()))
{
d = d + c;
}
}
MessageBox.Show(d);

Is This Answer Correct ?    7 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is default constructor c#?

916


What are extender provider components? Explain how to use an extender provider in the project.

851


Explain code compilation in c#.

894


Why do we use readonly in c#?

869


How is the syntax written to inherit from a class in C#?Give an example ?

1010


What is a delegate? Explain.

891


Can we inherit private members of class in c#?

912


How does one compare strings in c#?

954


What does f mean in c#?

870


Can an interface extend a class c#?

899


How many types of serialization are there in c#?

834


How can I get the ascii code for a character in c#?

1002


What is generic delegates in c#?

918


What is literal control

948


What is entity framework c#?

810