It should probably implement IDisposable instead 2011/11/3 Björn Kremer <b...@patorg.de>
> Hello, > > there is a little bug in the SpellChecker.cs class. The finalizer of this > class calls the close method even if the SpellChecker is already closed. > This causes an unhandled exception. > > This should work better: > ~SpellChecker() > { > if (closed == false) > { > this.Close(); > } > } > > Thank You > Björn > >