# TypeConverter<TSource, TDestination>

> Represents the method that will handle converting an object of type TSource to an object of type TDestination.

## Definition

* **Type:** Delegate
* **Namespace:** [Unity.Properties](/engine/6000.6/script-reference/unity/properties.md)
* **Assembly:** UnityEngine.PropertiesModule

```csharp
public delegate TDestination TypeConverter<TSource, out TDestination>(ref TSource value)
```
