コード例 #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;
     }
 }