Recycle() 개인적인 메소드

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