I would like to toggle Visual Studio's "Just my code" features on the fly for specific sections of my code.
I searched google for it but the only thing related to JMC are blog posts and https://marketplace.visualstudio.com/items?itemName=SamHarwell.JustMyCodeToggle
What i mean would be something like
private void MyFunction(){
#jmc 1
FunctionThatCallsAlotOfExternalCode();
#jmc 0
FunctionThatCallsExternalCodeINeedToWatch();
}
I really hoped there was at least a extension for it :(