Recycle() private method

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