SolarixGrammarEngineNET.AnalysisResults.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
        public void Dispose()
        {
            Dispose( true );
               GC.SuppressFinalize( this );
        }

Same methods

AnalysisResults::Dispose ( bool disposing ) : void

Usage Example

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