C# Edit and Continue: Erro 4009
Updating a [using alias | field | event | fixed size buffer | constant | attribute] will prevent the debug session from continuing while Edit and Continue is enabled
Este erro indica que você tentou modificar um using alias, o inicializador de campo, atributo de destino ou argumentos de atributo.
Consider the following example code:
class Program
{
private int Example = 10;
static void Main() { }
}
Se você entrar no aplicativo, tente alterar o Example = 10 para Example = 20, o erro ocorre.
To correct this error
Undo the changes, then continue debugging without the changes
- ou -
On the Debug menu, click Stop Debugging, make the changes, then start a new debugging session.
Consulte também
Referência
Alterações de código suportadas (C#)
Edição e continuação (Visual C#)