Mono.Cecil.Pdb.PdbWriter.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
        public void Dispose()
        {
            var entry_point = module.EntryPoint;
            if (entry_point != null)
                writer.SetUserEntryPoint (new SymbolToken (entry_point.MetadataToken.ToInt32 ()));

            writer.Close ();
        }