Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

LINQ to objects is my best friend. I am using often the ConvertAll extension method to achieve a conversion.

However I realize I can achieve the same by using the Select extension method.

For example, I have a ListView that displays a list of Alarm objects. I store the object itself in the Tag property of a ListView element. Then I retrieve the selection this way :

Version with ConvertAll:

public Alarm[] SelectedTags
{
    get
    {
        return AlarmListView
               .SelectedItems
               .OfType<ListViewItem>()
               .ToList().ConvertAll(i => i.Tag as Alarm)
               .ToArray();
    }
}

Version with Select:

public Alarm[] SelectedTags
{
    get
    {
        return AlarmListView
               .SelectedItems
               .OfType<ListViewItem>()
               .Select(i => i.Tag as Alarm)
               .ToArray();
    }
}

Personally I prefer Select because I can convert my collections easily without having to put them in a List and use ConvertAll. Anyway, both have certainly good reasons to exists.

Is one better than the other ? In which scenarios ?

share|improve this question

1 Answer

up vote 4 down vote accepted

ConvertAll has been around since .Net 2.0, whereas LINQ is newer. Select appears to be more general, and to make ConvertAll redundant.

I can't think of any situation where you would need to use ConvertAll in new code. Select is better-known, more general, and works with the other features of LINQ (such as direct translation to SQL queries in LINQ to SQL).

share|improve this answer
I realize now I believed wrongly that ConvertAll was a part of LINQ to Object. Thanks a lot for your clarification. – Laurent Sep 12 '12 at 12:53

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.