CircularListTForEach Method

Performs the specified action on each element of the CircularListT.

Definition

Namespace: KGySoft.Collections
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
C#
public void ForEach(
	Action<T> action
)

Parameters

action  ActionT
The ActionT delegate to perform on each element of the CircularListT.

Exceptions

ArgumentNullExceptionaction is .
InvalidOperationExceptionThe list has been modified during the operation.

See Also