public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
 {
     Debug.Assert(value != null, nameof(value) + " != null");
     return(EnumExtensions.GetAllValuesAndDescriptions(value.GetType()));
 }
Beispiel #2
0
 public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
 {
     return(EnumExtensions.GetAllValuesAndDescriptions(value.GetType()));
 }