This option controls whether the null-conditional operator should be preferred over an explicit null check when invoking a delegate.
condition?.Invoke();
if (condition != null) condition();