Compartilhar via


C# Edit and Continue: Erro 4015

Updating the base class and/or base interface(s) of a [class | struct] will prevent the debug session from continuing while Edit and Continue is enabled

This error indicates that you tried to edit the base class or interfaces of a class or struct, which cannot be changed while debugging.

Consider the following example:

class Example : System.IDisposable

{

   public void Dispose() { }

   static void Main(string[] args) { }

}

Se você entrar em Main, em seguida, tente alterar System.IDisposable para System.IComparable, este erro ocorre.

To correct this error

  • Choose Undo from the Debug menu to undo the changes.

    – ou –

  • On the Debug menu, click Stop debugging, make the changes, then start a new debugging session.

Consulte também

Referência

base (C# Reference)

interface (Referência de C#)

Alterações de código suportadas (C#)

Edição e continuação (Visual C#)

Outros recursos

Editar e continuar a erros e avisos (C#)