G
Guest
Is there any way to do something like this...
Main() {
foo();
bar();
}
[Debugger.StepOver()]
foo() {
// do something that has been debugged
}
bar() {
// do something that has not been debugged
}
Main() {
foo();
bar();
}
[Debugger.StepOver()]
foo() {
// do something that has been debugged
}
bar() {
// do something that has not been debugged
}