Example #1
0
 private void DisposeNativeResources()
 {
     if (_Dictionary != null)
     {
         foreach (var ptr in _Dictionary.Keys)
         {
             Marshal.FreeHGlobal(ptr);
         }
         _Dictionary.Dispose();
         _Dictionary = null;
     }
 }