Open
Description
#108930 represents an approved API for .NET 10 that adds JsonElement.Parse methods. Before its existence, developers would write things like:
JsonElement element = JsonDocument.Parse("json").RootElement;
which ends up renting an array from the ArrayPool with the JsonDocument but then never returning it because the JsonDocument isn't disposed.
We should add an analyzer/fixer that flags common patterns folks have used for getting a JsonElement, as called out in #108930, and recommend switching to use the new JsonElement.Parse methods.