Public Shared Sub ForEach(Of T) ( _ array As T(), _ action As Action(Of T) _ )
Dim array As T() Dim action As Action(Of T) Array.ForEach(array, action)
public static void ForEach<T> ( T[] array, Action<T> action )
public: generic<typename T> static void ForEach ( array<T>^ array, Action<T>^ action )
J# supports the use of generic types and methods, but not the declaration of new ones.
JScript does not support generic types and methods.
The type of the elements of the array.
The one-dimensional, zero-based Array on whose elements the action is to be performed.
The Action to perform on each element of array.
ArgumentNullException
array is a null reference (Nothing in Visual Basic).
-or-
action is a null reference (Nothing in Visual Basic).
The Action is a delegate to a method that performs an action on the object passed to it. The elements of array are individually passed to the Action.
This method is an O(n) operation, where n is the Length of array.
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.