Hi guys,
I wonder what is the proper way when value type (or targetType) isn't something one supports when implementing IValueConverter.Convert methods.
Should we return null (not a good option since target might not support nulls)? throw? something else?
In XAML I'd normally use DependencyProperty.UnsetValue in such cases.