Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
Previous Versions
.NET Framework 2.0
System
 Action Generic Delegate
This page is specific to
Microsoft Visual Studio 2005/.NET Framework 2.0

Other versions are also available for the following:
.NET Framework Class Library
Action Generic Delegate

Note: This delegate is new in the .NET Framework version 2.0.

Represents the method that performs an action on the specified object.

Namespace: System
Assembly: mscorlib (in mscorlib.dll)

Visual Basic (Declaration)
Public Delegate Sub Action(Of T) ( _
    obj As T _
)
Visual Basic (Usage)
Dim instance As New Action(Of T)(AddressOf HandlerMethod)
C#
public delegate void Action<T> (
    T obj
)
C++
generic<typename T>
public delegate void Action (
    T obj
)
J#
J# supports the use of generic types and methods, but not the declaration of new ones.
JScript
JScript does not support generic types and methods.

Type Parameters

T

The type of the object.

Parameters

obj

The object on which to perform an action.

This delegate is used by the Array.ForEach method and the List.ForEach method to perform an action on each element of the array or list.

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.

.NET Framework

Supported in: 2.0

.NET Compact Framework

Supported in: 2.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker