Delegate Converter<TInput, TOutput>
Converter type replacement for System.Converter. Enables this Assembly to be portable
Namespace: Fusee.Math.Core
Assembly: Fusee.Math.Core.dll
Syntax
public delegate TOutput Converter<in TInput, out TOutput>(TInput input);
Parameters
| Type | Name | Description |
|---|---|---|
| TInput | input | The input. |
Returns
| Type | Description |
|---|---|
| TOutput |
Type Parameters
| Name | Description |
|---|---|
| TInput | The type of the input. |
| TOutput | The type of the output. |