Ejemplo n.º 1
0
        internal TempContext(out T tool)
        {
            Temp <T> .GetFreeItem(out _tool);

            tool = _tool;
        }
Ejemplo n.º 2
0
 public void Dispose()
 {
     Temp <Owner, T> .Release(_tool);
 }
Ejemplo n.º 3
0
 public void Dispose()
 {
     Temp <T> .Release(_tool);
 }