Code inspection: Redundant lambda signature parenthesesLast modified: 08 April 2024Category: Redundancies in CodeID: RedundantLambdaSignatureParenthesesEditorConfig: resharper_redundant_lambda_signature_parentheses_highlighting=[error|warning|suggestion|hint|none]Default severity: HintLanguage: C#Requires SWA: NotipYou can suppress this inspection to ignore specific issues, change its severity level to make the issues less or more noticeable, or disable it altogether.If a lambda expression has a single, implicitly typed parameter, parentheses are optional. They are necessary if there are two or more parameters.JetBrains Rider suggests removing the redundant parentheses to improve code readability:Suboptimal codeFunc<string, Type> t = (x) => x.GetType();After the quick-fixFunc<string, Type> t = x => x.GetType();