<PackageReference Include="System.Text.Json" Version="10.0.0-rc.2.25502.107" />
System.Collections.Generic.StackExtensions
namespace System.
Collections.
Generic
{
internal static class StackExtensions
{
public static bool TryPeek<
T>(
this Stack<
T>
stack,
out T result);
public static bool TryPop<
T>(
this Stack<
T>
stack,
out T result);
}
}