This option controls whether local functions should be preferred over anonymous functions assigned to delegates.
Func<int, int> square = x => { return x * x; };
int Square(int x) { return x * x; }