AcManager.Controls.Converters.CountryIdToImageConverter.Convert C# (CSharp) Метод

Convert() публичный Метод

public Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object
targetType System.Type
parameter object
culture System.Globalization.CultureInfo
Результат object
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture) {
            var id = value?.ToString();
            return Convert(id?.Length != 2 ? null : id);
        }

Same methods

CountryIdToImageConverter::Convert ( [ id ) : BitmapImage
CountryIdToImageConverter