This option controls whether throw expressions should be preferred over throw statements where possible.
var x = y ?? throw new ArgumentNullException();
var x = y == null ? throw new ArgumentNullException() : y;