Mono.Cecil.Pdb.SymWriter.SetUserEntryPoint C# (CSharp) Method

SetUserEntryPoint() public method

public SetUserEntryPoint ( SymbolToken method ) : void
method System.Diagnostics.SymbolStore.SymbolToken
return void
        public void SetUserEntryPoint(SymbolToken method)
        {
            m_writer.SetUserEntryPoint (method);
        }

Usage Example

Esempio n. 1
0
        public void Dispose()
        {
            var entry_point = module.EntryPoint;

            if (entry_point != null)
            {
                writer.SetUserEntryPoint(new SymbolToken(entry_point.MetadataToken.ToInt32()));
            }

            writer.Close();
        }
All Usage Examples Of Mono.Cecil.Pdb.SymWriter::SetUserEntryPoint