Skip to content

Commit 29a5735

Browse files
authored
Update using-breakpoints.md
1 parent bc7add1 commit 29a5735

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

docs/debugger/using-breakpoints.md

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -67,21 +67,20 @@ You can set breakpoints when you want to stop debugger execution, perhaps to see
6767

6868
2. Enter a function name in the **Function Name** box.
6969

70-
> [!NOTE]
71-
> To narrow the function specification:
72-
>
73-
> Use the fully qualified function name.
74-
> Example: Namespace1.ClassX.MethodA()
75-
>
76-
> Add the parameter types of an overloaded function.
77-
> Example: MethodA(int, string)
78-
>
79-
> Use the '!' symbol to specify the module.
80-
> Example: App1.dll!MethodA
81-
>
82-
> Use the context operator in native C++.
83-
> {function, , [module]} [+<line offset from start of method>]
84-
> Example: {MethodA, , App1.dll}+2
70+
To narrow the function specification:
71+
72+
Use the fully qualified function name.
73+
Example: Namespace1.ClassX.MethodA()
74+
75+
Add the parameter types of an overloaded function.
76+
Example: MethodA(int, string)
77+
78+
Use the '!' symbol to specify the module.
79+
Example: App1.dll!MethodA
80+
81+
Use the context operator in native C++.
82+
{function, , [module]} [+<line offset from start of method>]
83+
Example: {MethodA, , App1.dll}+2
8584

8685
3. In the **Language** dropdown, choose the specific language of the function you want to break on.
8786

0 commit comments

Comments
 (0)