We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f82e64 commit 3c1c985Copy full SHA for 3c1c985
src/Markup/Avalonia.Markup.Xaml.Loader/CompilerExtensions/Transformers/AvaloniaXamlIlWellKnownTypes.cs
@@ -157,7 +157,7 @@ internal InteractivityWellKnownTypes(TransformerConfiguration cfg)
157
&& m.Name == "AddHandler"
158
&& m.Parameters.Count == 4
159
&& RoutedEvent.IsAssignableFrom(m.Parameters[0])
160
- && m.Parameters[0].GenericArguments?.Count == 1 // This is specific this case workaround to check is generici method
+ && m.Parameters[0].GenericArguments?.Count == 1 // This is specific this case workaround to check is generic method
161
&& (cfg.WellKnownTypes.Delegate).IsAssignableFrom(m.Parameters[1])
162
&& m.Parameters[2].IsEnum
163
&& m.Parameters[3].Equals(cfg.WellKnownTypes.Boolean) == true
0 commit comments