EnumerableExtensionsForEachT Method
Similarly to the
List<T>.ForEach method, processes an action on each element of an enumerable collection.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public static IEnumerable<T> ForEach<T>(
this IEnumerable<T> source,
Action<T> action
)
<ExtensionAttribute>
Public Shared Function ForEach(Of T) (
source As IEnumerable(Of T),
action As Action(Of T)
) As IEnumerable(Of T)
public:
[ExtensionAttribute]
generic<typename T>
static IEnumerable<T>^ ForEach(
IEnumerable<T>^ source,
Action<T>^ action
)
[<ExtensionAttribute>]
static member ForEach :
source : IEnumerable<'T> *
action : Action<'T> -> IEnumerable<'T>
- source IEnumerableT
- The source enumeration.
- action ActionT
- The action to perform on each element.
- T
- The type of the elements in the enumeration.
IEnumerableTReturns the original
source making possible to link it into a LINQ chain.In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerableT. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).