Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here are my C# classes:

public class myClass {

     // Some properties irrelevant to the question

     public List<someObject> ListOfStuff { get; set; }
}


public class someObject {

   public string Id { get; set; }

   public string Name { get; set; }
}

Question: is it possible to extract all Id into a separate array and all Name into another separate array?

For instance, something like this:

 myClass foo;
 // Populate foo...  
 List<string> names = foo.ListOfStuff( what goes here? );
share|improve this question

4 Answers

up vote 5 down vote accepted

You can do it using the Select method of LINQ:

List<string> names = foo.ListOfStuff.Select(x => x.Name).ToList<string>();
List<string> ids = foo.ListOfStuff.Select(x => x.Id).ToList<string>();
share|improve this answer
You'll have to call ToList() to assign to list... – Hasanain Nov 18 '11 at 21:06
@Hasanain: Right, just added it. – Otiel Nov 18 '11 at 21:07
Might want to add that you need to include using System.Linq; to use LINQ. – norlando Nov 18 '11 at 21:07
@norlando: Well, it is written in the tree on the left of the documentation page of the method. If we had to write the required using on every SO answer, I just think that would pollute the answers. – Otiel Nov 18 '11 at 21:10

LINQ makes this quite easy:

var idArray = ListOfStuff.Select(item => item.Id).ToArray();

To get your array of Names, just change the property you're selecting in the Select() method.

share|improve this answer

You can use LINQ to accomplish this, e.g.

List<string> names = foo.ListOfStuff.Select(x => x.Name).ToList();
share|improve this answer

Here are the linq queries to accomplish what you're looking to do:

IEnumerable<string> names = foo.ListOfStuff.Select(f => f.Name);
IEnumerable<string> IDs = foo.ListOfStuff.Select(f => f.Id);

If you want to store them in a List, then just tack a ToList() onto the end of those queries:

List<string> IDs = foo.ListOfStuff.Select(f => f.Id).ToList();
List<string> Names = foo.ListOfStuff.Select(f => f.Name).ToList();
share|improve this answer
The "Id" property is a string. – Adam V Nov 18 '11 at 21:05
@AdamV - noted and corrected, thank you. – Adam Rackis Nov 18 '11 at 21:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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