Top "Visual-studio-debugging" questions

Questions related to debugging methods and tricks in VisualStudio

Can I find out the return value before returning while debugging in Visual Studio?

Take the following function: DataTable go() { return someTableAdapter.getSomeData(); } When I set a breakpoint in this function, is there a …

c# visual-studio visual-studio-debugging
How to watch all variables when debugging in Visual Studio 2012

Is there a way to watch all variables when debugging in Visual Studio 2012 like i can do it in IntelliJ …

visual-studio-2012 visual-studio-debugging
From where do I reference a missing assembly (System.Net.Http.Formatting)?

In my Visual Studio 2013 RC project, I'm getting this err msg: "The type 'System.Net.Http.Formatting.MediaTypeFormatter' is defined …

.net-assembly visual-studio-debugging visual-studio-2013 system.net mediatypeformatter
'Step Into' is suddenly not working in Visual Studio

All of a sudden, I have run into an issue where I cannot step into any code through debugging in …

.net visual-studio-2010 debugging visual-studio-debugging
Visual Studio: Debugging a referenced DLL, I have source in another SLN

I am trying to debug a project that has a reference to a DLL that I added, the DLL is …

c# visual-studio-2010 visual-studio visual-studio-debugging
Visual Studio - suddenly cannot debug tests

I'm not sure what I did, but all of a sudden, my Visual Studio 2012 will not debug any tests. If …

visual-studio visual-studio-2012 visual-studio-2017 visual-studio-debugging vs-unit-testing-framework
VS2012 Breakpoints are not getting hit

I have a class that looks like this: public class MyService { private MyService(){} public static string GetStuff() { var stuffDid = new …

c# debugging visual-studio-2012 visual-studio-debugging
Visual Studio 2013 can't debug javascript in cshtml

I have an ASP.NET Web Application created with Visual Studio 2013. I am attempting to debug JavaScript in a CSHTML …

javascript asp.net-mvc visual-studio-2013 visual-studio-debugging
How to debug class library that called from external app?

There is an external workflow that executes C# scripts and is able to work with DLL files(my class library). …

c# visual-studio debugging visual-studio-debugging class-library