Exemplo n.º 1
0
 public void SetEntryPoint(uint entryMethodToken)
 {
     try
     {
         _symWriter.SetUserEntryPoint(entryMethodToken);
     }
     catch (Exception ex)
     {
         throw new PdbWritingException(ex);
     }
 }
Exemplo n.º 2
0
 public void SetUserEntryPoint(SymbolToken method)
 {
     m_writer.SetUserEntryPoint(method);
 }
Exemplo n.º 3
0
 public void SetUserEntryPoint(SymbolToken entryMethod)
 {
     writer.SetUserEntryPoint((uint)entryMethod.GetToken());
 }
Exemplo n.º 4
0
 public void SetUserEntryPoint(int methodToken)
 {
     m_writer.SetUserEntryPoint(methodToken);
 }
 public override void SetUserEntryPoint(MDToken entryMethod) => writer.SetUserEntryPoint(entryMethod.Raw);
Exemplo n.º 6
0
 public void SetUserEntryPoint(SymbolToken tok)
 {
     writer.SetUserEntryPoint(tok);
 }