Writing Extension methods with Action / Func / Delegates / Lambda in VB and C# - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T00:05:16Z http://stackoverflow.com/feeds/question/823157 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/823157/writing-extension-methods-with-action-func-delegates-lambda-in-vb-and-c 1 Writing Extension methods with Action / Func / Delegates / Lambda in VB and C# andy 2009-05-05T03:15:42Z 2009-05-05T03:52:13Z <p>hey guys.</p> <p>Firstly I can't get my head around the functional / Lambda aspects of .NET 3.5. I use these features everyday in LINQ, but my problem is understanding the implementation, and what they really mean (Lambda? System.Func? etc etc)</p> <p>With this in mind, how would the following be achieved:</p> <p>As an example, I'd like to have an Extension method for List(Of T) which sets the properties of all the objects in the List to a certain value, and returns the updated List(Of T). It would be called like this:</p> <p>VB:</p> <pre><code> Dim someList As List(Of TextBox) = (New List(Of TextBox)).UpdateExtension(Function(txtb) txtb.Text = "something") </code></pre> <p>C#:</p> <pre><code>List&lt;TextBox&gt; someList = (new List&lt;TextBox&gt;()).UpdateExtension(txtb =&gt; txtb.Text = "something"); </code></pre> <p><strong>What would the Extension method look like, in both VB and C#?</strong></p> <p>i.e:</p> <pre><code> &lt;Extension()&gt; _ Public Function UpdateExtension(Of T)(ByVal source As List(Of T), ByVal predicate As ??) As List(Of T) '?? End Function </code></pre> <p>cheers!</p> <p><strong>EDIT</strong></p> <p>As many have pointed out, the above can be achieved, more or less, with .ForEach(). But my interest is in understading how something like .ForEach() is implemented, i.e. I'm interested in the implementation of the solution for the above problem.</p> http://stackoverflow.com/questions/823157/writing-extension-methods-with-action-func-delegates-lambda-in-vb-and-c/823168#823168 2 Answer by Joel Coehoorn for Writing Extension methods with Action / Func / Delegates / Lambda in VB and C# Joel Coehoorn 2009-05-05T03:20:32Z 2009-05-05T03:35:05Z <p>With the exception that you would modify the list in place rather than returning a new one, this is just a <code>.ForEach()</code> call.</p> <p>To really understand how this works, think more in terms of <code>IEnumerable</code>s than Lists. Think about why the two expressions below have the same result <em>and</em> why the latter is generally preferable:</p> <pre><code>MyEnumerable.Count() &gt; 2 MyEnumerable.Skip(2).Any() </code></pre> <p>To help accomplish this, re-implement some standard IEnumerable extensions using C#'s <code>yield</code> keyword. Once you really get why the 2nd performs better you should be in good shape.</p> <p>As for the different basic delegate types, you just need to learn them. Think of <code>Func</code> as your basic common delegate, where you specify the argument type and return type for the generic type parameters. Then think of <code>Action</code> as a special case of <code>Func</code> where the return type is void and <code>Predicate</code> as a special case where the return type is bool.</p> http://stackoverflow.com/questions/823157/writing-extension-methods-with-action-func-delegates-lambda-in-vb-and-c/823188#823188 1 Answer by JaredPar for Writing Extension methods with Action / Func / Delegates / Lambda in VB and C# JaredPar 2009-05-05T03:27:15Z 2009-05-05T03:27:15Z <p>Really you're miking and matching extension methods here. It's almost a combination of Select and ForEach. It appears you want a method that will allow you to both modify elements of a list and return the original enumeration. The following should do the trick for you. </p> <p>VB.Net</p> <pre><code>&lt;Extension()&gt; _ Public Function UpdateExtension(Of T)(ByVal source As IEnumerable(Of T), ByVal del As Action(Of T)) As IEnumerable(Of T) For Each cur in source del(cur) Next Return source End Function </code></pre> <p>C#</p> <pre><code>public static IEnumerable&lt;T&gt; UpdateExtension&lt;T&gt;(this IEnumerable&lt;T&gt; source, Action&lt;T&gt; del) { foreach ( var cur in source ) { del(cur); } return source; } </code></pre> http://stackoverflow.com/questions/823157/writing-extension-methods-with-action-func-delegates-lambda-in-vb-and-c/823202#823202 1 Answer by davbro for Writing Extension methods with Action / Func / Delegates / Lambda in VB and C# davbro 2009-05-05T03:36:02Z 2009-05-05T03:36:02Z <p>Extensions are implemented in a static class by static methods that take the target of the extension as the first parameter preceded by the this keyword. To implement your example I would do:</p> <pre><code>public static class ListBoxExtensions { public static List&lt;TextBox&gt; SetToValue(this List&lt;TextBox&gt; txtBoxes, string sValue) { txtBoxes.ForEach(txtBox =&gt; txtBox.Text = sValue); return txtBoxes; } } </code></pre> <p>and to use this on a Windows form with 3 textboxes:</p> <pre><code>private void Form1_Load(object sender, EventArgs e) { List&lt;TextBox&gt; boxes = new List&lt;TextBox&gt; { textBox1, textBox2, textBox3 }.SetToValue("Hello"); } </code></pre> <p>Sorry - don't speak VB.</p> <p>Hope this helps.</p>