Exemplo n.º 1
0
        private void Dispose(bool disposing)
        {
            _reader.Dispose();

            if (disposing)
            {
                GC.SuppressFinalize(this);
            }
        }
Exemplo n.º 2
0
        public V8MetadataContainer(string FileName)
        {
            _fileName = FileName;

            try
            {
                _reader = new MDReader(_fileName);
            }
            catch
            {
                _reader.Dispose();
                throw;
            }
        }