- T1
- Documentation for this section has not yet been entered.
- T2
- Documentation for this section has not yet been entered.
- T3
- Documentation for this section has not yet been entered.
- T4
- Documentation for this section has not yet been entered.
- T5
- Documentation for this section has not yet been entered.
- arg1
- Documentation for this section has not yet been entered.
- arg2
- Documentation for this section has not yet been entered.
- arg3
- Documentation for this section has not yet been entered.
- arg4
- Documentation for this section has not yet been entered.
- arg5
- Documentation for this section has not yet been entered.
You can use the Action`5 delegate to pass a method as a parameter without explicitly declaring a custom delegate. The encapsulated method must correspond to the method signature that is defined by this delegate. This means that the encapsulated method must have five parameters that are all passed to it by value, and it must not return a value. (In C#, the method must return void. In Visual Basic, it must be defined by the Sub…End Sub construct. It can also be a method that returns a value that is ignored.) Typically, such a method is used to perform an operation.
To reference a method that has five parameters and returns a value, use the generic Func`6 delegate instead.
You can also use the Action`5 delegate with anonymous methods and lambda expressions.