Is there any extension method which get void returning lamda expression ?
Posted
by Freshblood
on Stack Overflow
See other posts from Stack Overflow
or by Freshblood
Published on 2010-06-13T21:12:28Z
Indexed on
2010/06/13
21:22 UTC
Read the original article
Hit count: 215
For example
int[] Array = { 1, 23, 4, 5, 3, 3, 232, 32, };
Array.JustDo(x => Console.WriteLine(x));
© Stack Overflow or respective owner