Beef
Beef copied to clipboard
[Enhancement] Breakpoints on {
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.