Brian Fiete

Results 101 comments of Brian Fiete

I just saw this: https://devblogs.microsoft.com/dotnet/welcome-to-csharp-10/ : > Starting with C# 10, however, if a lambda does not have such a “target type” we will try to compute one for you:...

Hm. I think we could reuse `new` here, actually, in the similar sense to how it's used in inheritance to allow you to have fields of the same name as...

You're debugging release-compiled code there - VS also can't display those variables. You can set "Beef Library" under "Targeted/Build" to "Dynamic Debug" if you want to debug BeefRT

That value (-2147483648) is `#define GENERIC_READ (0x80000000L)` from winnt.h Having an "Add Watch" from the Auto window is probably a fine idea. And, no, it's not possible to have F12...

The `const char*` should probably always show as a string while debugging C code. So yeah, that's a (minor) debugger bug.

We do explicitly ensure there's always an instruction (even just a NOP) at the closing brace of a block - that's so if you have something like ```C# { int...

Symbol breakpoints let you manually specify a symbol name. IE: `CreateWindowExA`. For your use case you probably actually want to have a logging breakpoint rather than a normal breakpoint. With...

I mean the Log String from Configure Breakpoint: ![image](https://user-images.githubusercontent.com/3042917/148685135-40107fae-dd0b-424e-9337-e6da9937bc64.png) With that configured you can get a text output method calls with params without having to stop on each breakpoint. But,...

I’m on vacation for the next week - looking forward to checking this out!

I made a couple tweaks at https://github.com/beefytech/Beef/commit/ebcaffbae9149377421431f2ec3cd296833128f3 Including auto-generating a bookmark name based on the syntactic source file location