This option controls whether pattern matching should be preferred over using the as operator followed by a null check.
if (o is string s) { return s; }
string s = o as string; if (s != null) { return s; }