CombineDelegates<T>(IEnumerable<Action<T>>) Method
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<Action<T>> The delegates to combine.

Return Value

Type Description
Action<T>? A multicast delegate combined from the given delegates.