This option controls whether method group conversions should be preferred over lambdas that merely forward their arguments to a method.
numberStrings .Select(int.Parse);
numberStrings .Select(s => int.Parse(s));