Combines the delegates into a single multicast delegate.
This is needed because Silverlight doesn't have the
Delegate.Combine( params Delegate[] ) overload.
- Namespace
- CsvHelper
.Expressions - Containing Type
- RecordWriter
Syntax
protected virtual Action<T>? CombineDelegates<T>(IEnumerable<Action<T>> delegates)
Type Parameters
| Name | Description |
|---|---|
| T |
Parameters
| Name | Type | Description |
|---|---|---|
| delegates | IEnumerable |
The delegates to combine. |
Return Value
| Type | Description |
|---|---|
| Action |
A multicast delegate combined from the given delegates. |