Click or drag to resize
ListTForEach Method

Namespace: System.Collections.Generic
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public void ForEach(
	Action<T> action
)

Parameters

action
Type: SystemActionT
The ActionT delegate to perform on each element of the ListT.
Exceptions
ExceptionCondition
ArgumentNullExceptionaction is null.
See Also