awulkiew / graphical-debugging

Graphical Debugging extension for Visual Studio
MIT License
150 stars 24 forks source link

add handling of types decorated with module name #60

Closed gastald88 closed 10 months ago

gastald88 commented 11 months ago

I run into some types from an external library that were not correctly recognized by the graphical watch. In particular, given a type Fooin a library MyLibrary.dll, in the watch list I have MyLibrary.dll!Foo.

A handling for the case Foo{MyLibrary.dll!} was recently added, but also this case appears to be useful.

I tested locally and it works.

I hope that it is fine that I use the "!" symbol as last character of module reference, so I remove till such symbol the first part of the string read

awulkiew commented 11 months ago

Thanks! It looks good to me. I'm wondering about two things though (see the comments to the code).

gastald88 commented 11 months ago

Thanks! It looks good to me. I'm wondering about two things though (see the comments to the code).

Thanks to you and for allowing forks! Great job!

awulkiew commented 10 months ago

Thanks for the PR and answers.