'Declaration
Public Shared Sub ForEach(Of T)( _
ByVal source As System.Collections.Generic.IEnumerable(Of T), _
ByVal action As System.Action(Of T) _
)
public static void ForEach<T>(
System.Collections.Generic.IEnumerable<T> source,
System.Action<T> action
)