Пример #1
0
 /// <summary>
 /// Disposes of all resources associated with this coordinate collection index.
 /// </summary>
 public void Dispose()
 {
     _index.Dispose();
     _index = null;
     _coordinates.Dispose();
     _coordinates = null;
 }
Пример #2
0
 /// <summary>
 /// Disposes of all resources associated with this index.
 /// </summary>
 public void Dispose()
 {
     if (_coordinates != null)
     {
         _coordinates.Dispose();
         _coordinates = null;
     }
 }
Пример #3
0
 /// <summary>
 /// Disposes of all native resources associated with this object.
 /// </summary>
 public override void Dispose()
 {
     _baseArray.Dispose();
     _baseArray = null;
 }