/// <summary>
 /// Release all unmanaged LS contexts
 /// </summary>
 private void CleanupInternal()
 {
     for (int i = 0; i < _contextList.Count; i++)
     {
         _contextList[i].Destroy();
     }
     _contextList.Clear();
 }