vote up 3 vote down star

Is there an easy way to get only the unique values out of a list of strings in C#? My google-fu is failing me today.

(I know I can put them in another structure and pull them out again. I'm looking for stupidly-easy, like Ruby's .uniq method. C# has bloody well everything else, so I'm probably just using the wrong synonym.)

Specifically, this is coming from Linq, so if Linq had a built-in way to select only unique strings, that would be even cooler.

flag

71% accept rate

2 Answers

vote up 9 vote down check
List<string> strings = new string[] { "Hello", "Hello", "World" }.ToList();

strings = strings.Distinct().ToList();
link|flag
but dude... no boom shaka-laka?! – kronoz Feb 18 at 23:07
You see I just like BOOOM! But I wasn't sure if I should.. =P – Quintin Robinson Feb 18 at 23:07
vote up 6 vote down

In .net 3.5:-

var strings = new List<string> { "one", "two", "two", "three" };
var distinctStrings = strings.Distinct(); // IEnumerable<string>
var listDistinctStrings = distinctStrings.ToList(); // List<string>

Boom shaka-laka!

link|flag
You and your verbose examples, where is the dirty redundant cycle wasting code like mine!? – Quintin Robinson Feb 18 at 23:08
I spent the energy I could have spent on that, writing 'boom shaka-laka'! Almost goes without saying ;-) – kronoz Feb 18 at 23:09
+1 for comments that make me smile. – Nescio Feb 19 at 9:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.