This commit is contained in:
2020-04-03 04:48:57 +02:00
parent 97067a68a5
commit 1e8889aecc
19 changed files with 1156 additions and 212 deletions

View File

@@ -10,7 +10,7 @@ namespace HashCalculator.GUI.Converters
[SuppressMessage("Microsoft.Performance", "CA1812")]
internal class ValueConverterAggregate : List<IValueConverter>, IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
public object? Convert(object? value, Type targetType, object parameter, CultureInfo culture)
{
return this.Aggregate(value, (current, converter) => converter.Convert(current, targetType, parameter, culture));
}