[]
Represents a method that converts an object from one struct type to another struct type.
public delegate void StructConverter<TInput, TOutput>(in TInput input, out TOutput output) where TInput : struct where TOutput : struct
Public Delegate Sub StructConverter(Of TInput As Structure, TOutput As Structure)(ByRef input As TInput, ByRef output As TOutput)
| Type | Name | Description |
|---|---|---|
| TInput | input | The struct to convert. |
| TOutput | output | The converted struct. |
| Name | Description |
|---|---|
| TInput | The type of struct that is to be converted. |
| TOutput | The type the input struct is to be converted to. |