Passing "null" to JsonSerializer.Parse when deserializing arrays throws NullReferenceException.
int[] obj = JsonSerializer.Parse<int[]>("null");
//throws:
//Object reference not set to an instance of an object.
//at System.Text.Json.Serialization.JsonSerializer.ApplyObjectToEnumerable(Object value, JsonSerializerOptions options, ReadStack& state, Utf8JsonReader& reader, Boolean setPropertyDirectly)
Passing "null" to JsonSerializer.Parse when deserializing arrays throws NullReferenceException.