I have a class that looks like this:
public class MyService { private MyService(){} public static string GetStuff() { var stuffDid = new
You could try to add a Thread.Sleep(5000) in GetStuff method and use Attach to Process
Thread.Sleep(5000)
GetStuff
Visual Studio > Tools > Attach To Process and see if breakpoints below that line gets hit.