Combining Variable Numbers of Lists w/ LINQ
Posted
by Anthony Compton
on Stack Overflow
See other posts from Stack Overflow
or by Anthony Compton
Published on 2010-06-01T22:02:20Z
Indexed on
2010/06/01
22:03 UTC
Read the original article
Hit count: 282
I have a list (List) of objects. Each of those objects contains a list (List) of strings describing them.
I'm needing to create a dropdown containing all of the distinct strings used to describe the objects (Cards). To do this, I need a list of distinct strings used.
Any idea how/if this can be done with LINQ?
© Stack Overflow or respective owner