Blazor | ComponentOne
C1.Blazor.Core Assembly / C1.Blazor.Core Namespace / DelegateConverter Class / Create Method / Create(Func<Object,Object>) Method
The converter function.
Example

In This Topic
    Create(Func<Object,Object>) Method
    In This Topic
    Creates the specified converter function.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function Create( _
       ByVal converterFunction As Func(Of Object,Object) _
    ) As IValueConverter

    Parameters

    converterFunction
    The converter function.

    Return Value

    The converted value
    Example
    var converter = DelegateConverter.Create((value)=>
    {
        return; //Put the converter code here
    });
    See Also