Recycle() private method

private Recycle ( ) : void
return void
Example #1
0
 private void RecycleMatchesContext()
 {
     if (_matchesContext != null)
     {
         _matchesContext.Recycle();
     }
 }
Example #2
0
 private void RecycleValueOfContext()
 {
     if (_valueOfContext != null)
     {
         _valueOfContext.Recycle();
     }
 }
Example #3
0
 private void RecycleMatchesContext()
 {
     _matchesContext?.Recycle();
 }
Example #4
0
 private void RecycleValueOfContext()
 {
     _valueOfContext?.Recycle();
 }