Creates the specified converter function.
Namespace:
C1.Silverlight
Assembly:
C1.Silverlight (in C1.Silverlight.dll)
Syntax
Parameters
- converterFunction
- Type: System..::..Func<(Of <(<'Object, Type, Object, CultureInfo, Object>)>)>
The converter function. (value, type, parameter, culture)
- converterBackFunction
- Type: System..::..Func<(Of <(<'Object, Type, Object, CultureInfo, Object>)>)>
The convert back function. (value, type, parameter, culture)
Return Value
The converted value
Examples
Copy CodeC#
var converter = CustomConverter.Create((value, type, parameter, culture)=>
{
return;
}); |
See Also