SolarixGrammarEngineNET.AnalysisResults.Dispose C# (CSharp) Method

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void
        protected virtual void Dispose( bool disposing )
        {
            if( hPack != null && !hPack.IsInvalid )
               {
            hPack.Dispose();
               }
        }

Same methods

AnalysisResults::Dispose ( ) : void

Usage Example

Esempio n. 1
0
 protected virtual void Dispose(bool disposing)
 {
     if (morphology != null)
     {
         morphology.Dispose();
     }
     if (tokenization != null)
     {
         tokenization.Dispose();
     }
     if (syntax_tree != null)
     {
         syntax_tree.Dispose();
     }
     return;
 }