Code Inspection: Redundant lambda signature parenthesesLast modified: 21 March 2024tipYou 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:BeforeFunc<string, Type> t = (x) => x.GetType();AfterFunc<string, Type> t = x => x.GetType();