Recycle() private method

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