[]
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
| 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. |
| Name | Description |
|---|---|
| StructConverter(object, IntPtr) |
| Name | Description |
|---|---|
| BeginInvoke(in TInput, out TOutput, AsyncCallback, object) | |
| EndInvoke(in TInput, out TOutput, IAsyncResult) | |
| Invoke(in TInput, out TOutput) |