NDesk.Options

GIT Repository

NDesk.Options : System Namespace

Action<T1,T2> Generic Delegate

A delegate that can refer to any method taking two arguments and returning void.

public delegate void Action<T1,T2> (T1 a, T2 b)


Type Parameters

T1
The first parameter type.
T2
The second parameter type.

Parameters

a
A value of type .
b
A value of type .

Remarks

This type is present within NDesk.Options.dll if targeting the .NET 2.0 framework. When targeting the .NET 3.5 framework, the Action`2 delegate type within System.Core.dll should be used instead.