Interface IFunctional<TDelegate>
Represents root interface for all functional interfaces.
Namespace: DotNext.Runtime.CompilerServices
Assembly: DotNext.dll
Syntax
public interface IFunctional<out TDelegate> where TDelegate : Delegate
Type Parameters
Name | Description |
---|---|
TDelegate | The type of the delegate representing signature of the functional interface. |
Methods
| Edit this page View SourceToDelegate()
Converts functional object to the delegate.
Declaration
TDelegate ToDelegate()
Returns
Type | Description |
---|---|
TDelegate | The delegate representing this functional object. |