EnumerableExtensionsForEachT Method

Similarly to the List<T>.ForEach method, processes an action on each element of an enumerable collection.

Definition

Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
C#
public static IEnumerable<T> ForEach<T>(
	this IEnumerable<T> source,
	Action<T> action
)

Parameters

source  IEnumerableT
The source enumeration.
action  ActionT
The action to perform on each element.

Type Parameters

T
The type of the elements in the enumeration.

Return Value

IEnumerableT
Returns the original source making possible to link it into a LINQ chain.

Usage Note

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).

See Also