CODE.Framework.Wpf.Theme.Workplace.Classes.ToUpperTextConverter.Convert C# (CSharp) Method

Convert() public method

Converts a value.
public Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object The value produced by the binding source.
targetType Type The type of the binding target property.
parameter object The converter parameter to use.
culture CultureInfo The culture to use in the converter.
return object
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture) => value.ToString().ToUpper();
ToUpperTextConverter