private void RecycleMatchesContext() { if (_matchesContext != null) { _matchesContext.Recycle(); } }
private void RecycleValueOfContext() { if (_valueOfContext != null) { _valueOfContext.Recycle(); } }
private void RecycleMatchesContext() { _matchesContext?.Recycle(); }
private void RecycleValueOfContext() { _valueOfContext?.Recycle(); }