Dispose() 보호된 메소드

protected Dispose ( bool disposing ) : void
disposing bool
리턴 void
예제 #1
0
 private void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (cache != null)
         {
             cache.Dispose();
         }
     }
 }