Partilhar via


C# Edit and Continue: Erro 4014

Updating the underlying type of a enum will prevent the debug session from continuing while Edit and Continue is enabled

This error indicates that you tried to edit the underlying type of an enumeration, which cannot be changed while debugging.

Consider the following example:

enum Color: byte

{

   Red

}

class Example

{

   static void Main(string[] args) {}

}

Se você entrar neste código, em seguida, tente alterar byte para int, o erro ocorre.

To correct this error

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

    – ou –

  • From the Debug menu, choose Stop Debugging, make the changes, then start a new debugging session.

Consulte também

Referência

Enum (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#)