diff --git a/xml/System/Console.xml b/xml/System/Console.xml index 66c7a2e4d18..541d9dded4f 100644 --- a/xml/System/Console.xml +++ b/xml/System/Console.xml @@ -591,7 +591,7 @@ - , which allows you to determine whether the handler was invoked as a result of the user pressing Ctrl+C (the property value is ) or Ctrl+Break (the property value is ). -- , which allows you to determine how to your application should respond to the user pressing Ctrl+C or Ctrl+Break. By default, the property is `false`, which causes program execution to terminate when the event handler exits. Changing its property to `true` specifies that the application should continue to execute. +- , which allows you to determine how your application should respond to the user pressing Ctrl+C or Ctrl+Break. By default, the property is `false`, which causes program execution to terminate when the event handler exits. Changing its property to `true` specifies that the application should continue to execute. > [!TIP] > If your application has simple requirements, you can use the property instead of this event. By setting this property to `false`, you can ensure that your application always exits if the user presses Ctrl+C. By setting it to `true`, you can ensure that pressing Ctrl+C will not terminate the application.