Beef icon indicating copy to clipboard operation
Beef copied to clipboard

[Enhancement] Breakpoints on {

Open marsej opened this issue 4 years ago • 0 comments

In VS C# you can put breakpoints on {.

Can be handy in situation like:

            if (Native.EnumProcessModulesEx(process.Handle, modulePointers, bytesNeeded, out bytesNeeded, (uint)Native.ModuleFilter.ListModulesAll))
BP            {
                for (int index = 0; index < totalNumberofModules; index++)
                {

To watch changes in bytesNeeded. If the BP is in any other place, one needs to F10 step to see the change.

marsej avatar Apr 03 '21 03:04 marsej