Ejemplo n.º 1
0
 /// <summary>
 /// Free resources
 /// </summary>
 public void Dispose()
 {
     if (_images != null)
     {
         for (int i = 0; i < _images.Length; i++)
         {
             if (_images[i] != null)
             {
                 _images[i].Dispose();
             }
         }
         _images = null;
     }
     if (_accumulated != null)
     {
         _accumulated.Dispose();
         _accumulated = null;
     }
 }