Delegate ConvertDelegate<TSource, TDestination>
Represents the method that will handle converting an object of type TSource
to an object of type TDestination
.
Namespace: Unity.Properties
Syntax
public delegate TDestination ConvertDelegate<in TSource, out TDestination>(TSource value);
Parameters
Type | Name | Description |
---|---|---|
TSource | value | The source value to be converted. |
Returns
Type | Description |
---|---|
TDestination |
Type Parameters
Name | Description |
---|---|
TSource | The source type to convert from. |
TDestination | The destination type to convert to. |