AC.AvalonControlsLibrary.Core.OneWayMultiValueConverter.Convert C# (CSharp) Method

Convert() public abstract method

Converts a value. Used in data binding. Override this method (sealed).
public abstract Convert ( Array values, Type targetType, object parameter, System.Globalization.CultureInfo culture ) : object
values Array The array of values that the source bindings in the MultiBinding produces
targetType Type The type of the binding target property
parameter object The converter parameter to use
culture System.Globalization.CultureInfo The culture to use in the converter
return object
        public abstract object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture);
OneWayMultiValueConverter