Add breakpoint to c# class's every methods in

2019-07-21 00:14发布

问题:

I have a class and I would like the debugger to stop whenever any of its method are called.

I tried using "New function breakpoint" but I couldn't find a working wildcard to use in "Function Name" (ex: I tried "MyNamespace.MyClass.*")

There are example for c++, but they don't seem to apply as-is for c# (or I'm missing something).

How can it be done?