Fernando Omori

Results 2 comments of Fernando Omori

@snakefoot Would it be ok to just use something like this ? ```csharp #if NET6_0_OR_GREATER ArgumentNullException.ThrowIfNull(argument); #else if (argument is null) { throw new ArgumentNullException(nameof(argument)); } #endif ``` I think...

Hey, done some research about this, the bug is due the `>` character in the lambda body, for some reason it breaks something in the `TryRangeOfParenEnclosingOpEqualsGreaterUsage` during the `SyntaxTraversal.Traverse` process...