Performs the specified action on each element of the BigList.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public void ForEach(
Action<T> action
)
Public Sub ForEach (
action As Action(Of T)
)
public:
void ForEach(
Action<T>^ action
)
member ForEach :
action : Action<'T> -> unit
Parameters
- action
- Type: SystemActionT
The delegate to perform on each element of the BigList.
See Also