Interface ICallable<D>
Represents common interface for typed method pointers.
Namespace: DotNext
Assembly: DotNext.dll
Syntax
public interface ICallable<out D> : ICallable where D : Delegate
Type Parameters
| Name | Description |
|---|---|
| D | The type of the delegate that is compatible with the pointer. |
Methods
| Improve this Doc View SourceToDelegate()
Converts method pointer into delegate.
Declaration
D ToDelegate()
Returns
| Type | Description |
|---|---|
| D | The delegate instance created from this pointer. |