This option controls whether out variables should be declared inline at the call site rather than in a separate declaration.
int.TryParse(s, out int x);
int x; int.TryParse(s, out x);