Lucene.Net.Codecs.BlockTreeTermsReader.Dispose C# (CSharp) 메소드

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void
        public override void Dispose()
        {
            try
            {
                IOUtils.Close(@in, PostingsReader);
            }
            finally
            {
                // Clear so refs to terms index is GCable even if
                // app hangs onto us:
                Fields.Clear();
            }
        }