Exemplo n.º 1
0
 public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
 {
     if (FlexibleParser.TryParseTime(value?.ToString(), out var time))
     {
         return(time);
     }
     throw new FormatException("Can’t parse time");
 }