When introducing null conditional operators (#7 and #251) there are various parts like this: ```csharp ((object)P == null) ``` Those can be replaced with: ```csharp P is null ``` when we introduce pattern matching. There may be other places where this is useful too.