回答編集履歴

1

sealed

2022/08/19 05:10

投稿

TN8001
TN8001

スコア10022

test CHANGED
@@ -79,7 +79,7 @@
79
79
  ```
80
80
 
81
81
  ```cs
82
- public sealed class BoolNegationConverter : IValueConverter
82
+ public class BoolNegationConverter : IValueConverter
83
83
  {
84
84
  public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
85
85
  => !(value is bool && (bool)value);