Introduction to C# list comprehensions - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T06:54:08Z http://stackoverflow.com/feeds/question/130898 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/130898/introduction-to-c-list-comprehensions 5 Introduction to C# list comprehensions William Hutchen 2008-09-25T01:03:25Z 2009-06-05T03:00:35Z <p>What is a good introduction or tutorial article for learning how to use list comprehensions in C#?</p> http://stackoverflow.com/questions/130898/introduction-to-c-list-comprehensions/130915#130915 1 Answer by Ian P for Introduction to C# list comprehensions Ian P 2008-09-25T01:08:48Z 2008-09-25T01:08:48Z <p>While this isn't a tutorial, here's some code that illustrates the concept:</p> <pre><code>public List&lt;string&gt; ValidUsers(List&lt;User&gt; users) { List&lt;string&gt; names = new List&lt;string&gt;(); foreach(User user in users) { if(user.Valid) { names.Add(user.Name); } } return names; } </code></pre> http://stackoverflow.com/questions/130898/introduction-to-c-list-comprehensions/130919#130919 2 Answer by muloh for Introduction to C# list comprehensions muloh 2008-09-25T01:11:38Z 2008-09-25T01:11:38Z <p>You can use LINQ to make expressions that are similar to list comprehensions. Here's a site explaining it a little:</p> <p><a href="http://artyprog.blogspot.com/2008/07/list-comprehension-in-c-with-linq.html" rel="nofollow">List Comprehension in C# with LINQ</a></p> <p><a href="http://artyprog.blogspot.com/2008/07/list-comprehension-in-c-with-linq-part.html" rel="nofollow">List Comprehension in C# with LINQ - Part 2</a></p> http://stackoverflow.com/questions/130898/introduction-to-c-list-comprehensions/130945#130945 2 Answer by Nescio for Introduction to C# list comprehensions Nescio 2008-09-25T01:17:28Z 2008-09-25T01:17:28Z <p>@<a href="#130915" rel="nofollow">Ian P</a></p> <pre><code> return (from user in users where user.Valid select user.Name).ToArray(); </code></pre> http://stackoverflow.com/questions/130898/introduction-to-c-list-comprehensions/130974#130974 0 Answer by Mike Thompson for Introduction to C# list comprehensions Mike Thompson 2008-09-25T01:25:28Z 2008-09-25T01:25:28Z <p><a href="http://www.codeproject.com/KB/cs/Comprehension.aspx" rel="nofollow">Here</a> is a CodeProject article describing list comprehensions in C# 2.0</p> http://stackoverflow.com/questions/130898/introduction-to-c-list-comprehensions/684218#684218 0 Answer by Justin Bozonier for Introduction to C# list comprehensions Justin Bozonier 2009-03-26T01:43:08Z 2009-03-26T01:43:08Z <p>Found this when I was looking up how to do list comprehensions in C#...</p> <p>When someone says list comprehensions I immediately think about Python. The below code generates a list that looks like this:</p> <p>[0,2,4,6,8,10,12,14,16,18]</p> <p>the Python way is like this: list = [2*number for i in range(0,10)]</p> <p>and in C#: var list2 = from number in 0.To(10) select 2*number;</p> <p>Both methods are lazily evaluated.</p> http://stackoverflow.com/questions/130898/introduction-to-c-list-comprehensions/954090#954090 2 Answer by Jonas Gorauskas for Introduction to C# list comprehensions Jonas Gorauskas 2009-06-05T03:00:35Z 2009-06-05T03:00:35Z <p>A List Comprehension is a type of set notation in which the programmer can describe the properties that the members of a set must meet. It is usually used to create a set based on other, already existing, set or sets by applying some type of combination, transform or reduction function to the existing set(s).</p> <p>Consider the following problem: You have a sequence of 10 numbers from 0 to 9 and you need to extract all the even numbers from that sequence. In a language such a C# version 1.1, you were pretty much confined to the following code to solve this problem:</p> <pre><code>ArrayList evens = new ArrayList(); ArrayList numbers = Range(10); int size = numbers.Count; int i = 0; while (i &lt; size) { if (i % 2 == 0) { evens.Add(i); } i++; } </code></pre> <p>The code above does not show the implementation of the Range function, which is available in the full code listing below. With the advent of C# 3.0 and the .NET Framework 3.5, a List Comprehension notation based on Linq is now available to C# programmers. The above C# 1.1 code can be ported to C# 3.0 like so:</p> <pre><code>IEnumerable&lt;int&gt; numbers = Enumerable.Range(0, 10); var evens = from num in numbers where num % 2 == 0 select num; </code></pre> <p>And technically speaking, the C# 3.0 code above could be written as a one-liner by moving the call to <em>Enumarable.Range</em> to the Linq expression that generates the <em>evens</em> sequence. In the C# List Comprehension I am reducing the set <em>numbers</em> by applying a function (the modulo 2) to that sequence. This produces the <em>evens</em> sequence in a much more concise manner and avoid the use of loop syntax. Now, you may ask yourself: Is this purely syntax sugar? I don't know, but I will definitelly investigate, and maybe even ask the question myself here. I suspect that this is not just syntax sugar and that there are some true optimizations that can be done by utilizing the underlying monads.</p> <p>The full code listing is available <a href="http://blog.theblinkingcursor.org/2009/06/list-comprehensions-in-c.html" rel="nofollow">here</a>.</p>