Click here to Skip to main content
15,886,788 members

Comments by ring_0 (Top 2 by date)

ring_0 1-Nov-11 8:06am View    
Deleted
Reason for my vote of 5
Good One.
ring_0 28-Dec-10 5:19am View    
Deleted
please choose your variable name wisely,
you wrote,
public static void ForEach<t>(this IEnumerable<t> @enum, Action<t> mapFunction)
but my concern is with the variable mapFunction which is a type of delegate Action<t>, actually mapfunction means a function that takes one type and transform to another type.
For Example,
Select operator is map function. Which is defined like Func<tsource,treturn>