Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 1.06 KB

File metadata and controls

46 lines (35 loc) · 1.06 KB
title Start Command
description Learn about the Start command and how it begins debugging the startup project.
ms.date 11/04/2016
ms.topic reference
f1_keywords
debug.start
helpviewer_keywords
Start command
Debug.Start command
author Mikejo5000
ms.author mikejo
ms.subservice general-ide

Start Command

Begins debugging the startup project.

Syntax

Debug.Start [address]

Arguments

address

Optional. The address at which the program suspends execution, similar to a breakpoint in source code. This argument is only valid in debug mode.

Remarks

The Start command, when executed, performs a RunToCursor operation to the specified address.

Example

This example starts the debugger and ignores any exceptions that occur.

>Debug.Start

See also