コード例 #1
0
 public void Return(int size)
 {
     releaseCount.IncrementBy(1);
     totalSize.DecrementBy(size);
 }
コード例 #2
0
 public void Take(int size)
 {
     allocCount.IncrementBy(1);
     totalSize.IncrementBy(size);
 }