Anonymous types¶
Namespace containing short definitions of anonymous functions useful for older .NET environment.
These types are used internally by library.
Function¶
Multiple definitions of generic function delegate.
public delegate TOut Function<TIn, TOut>(TIn input);
public delegate void Function<TIn>(TIn input);
public delegate void Function();
Event¶
Event function delegates.
public delegate void Event();
public delegate void Event<TEvent>(TEvent argument);