For example
int[] Array = { 1, 23, 4, 5, 3, 3, 232, 32, };
Array.JustDo(x => Console.WriteLine(x));
|
For example
|
||||
|
|
I think you're looking for Array.ForEach which doesn't require you to convert to a List<> first.
|
|||||||||||
|
|
You can use the Array.ForEach method
or make your own extension method
|
|||||
|
|
As others have said, you can use If you still want it after reading that, there is the
(I've changed the name of the variable to avoid confusion. It's generally better not to name variables with the same name as a type.) There's plenty of great stuff to look at in Reactive Extensions... |
|||||||
|