At.FF.Krems.Utils.WPF.Converters.PrioFirstValueMulti.ConvertBack C# (CSharp) Method

ConvertBack() public method

Converts a binding target value to the source binding values.
public ConvertBack ( object value, Type targetTypes, object parameter, CultureInfo culture ) : object[]
value object The value that the binding target produces.
targetTypes System.Type The array of types to convert to. The array length indicates the number and types of values that are suggested for the method to return.
parameter object The converter parameter to use.
culture System.Globalization.CultureInfo The culture to use in the converter.
return object[]
        public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
        {
            return Array.ConvertAll(targetTypes, input => value);
        }
PrioFirstValueMulti