This option controls whether pattern matching should be preferred over using the is operator followed by an explicit cast.
if (o is string s) { return s; }
if (o is string) { return (string)o; }