Skip to main content
471 votes
22 answers
116k views

Take the following function: DataTable go() { return someTableAdapter.getSomeData(); } When I set a breakpoint in this function, is there a possibility to inspect the returned value? go() is ...
doekman's user avatar
  • 19.4k
203 votes
27 answers
209k views

I'm using the new Visual Studio 2013 with IISExpress for the first time (previously used ASP.net Development server on VS2010). I'm running into issues trying to debug my project. This is what I see ...
Kevin's user avatar
  • 3,389
92 votes
31 answers
203k views

I am running Visual Studio 2010 (as Admin), IIS 7 on Windows 7 x64. I am able to run the ASP.NET web site in IIS 7 without debugging just fine, but when I press F5 to debug it, I get: Unable to ...
Dan C's user avatar
  • 2,231
91 votes
10 answers
106k views

I have a test ASP.NET MVC3 application developed in VS2012. When I start debugging the app is accessed from the host machine via the request to http://localhost:<portnumber>. But if I try to ...
gator88's user avatar
  • 1,233
43 votes
4 answers
27k views

I updated Visual Studio 2017 to version 15.8.2. After this update, I started to encounter these errors while debugging: Here are the error messages: Visual Studio Debug Error: To prevent an unsafe ...
Sorin George Budescu's user avatar
34 votes
5 answers
39k views

I am not sure what happened or if I did anything.. Now anytime I try and debug it says no source available on all BCL stuff For example, on a debug.print I get that message with Locating source for ...
Eric's user avatar
  • 3,087
33 votes
4 answers
11k views

I have a solution in Visual Studio 2008 which has multiple projects. One of the projects is a WCF project. Sometimes I just want to debug other projects, but when I press F5, Visual Studio has ...
Morgan Cheng's user avatar
  • 76.4k
149 votes
8 answers
180k views

I'm suddenly getting a strange error while debugging. Up to now the variable in the watch windows has been showing correctly. Now I am always getting this error message in the watch windows: The ...
Maik's user avatar
  • 1,712
114 votes
4 answers
36k views

Few days ago I moved my solution to MSVS 2013. It works fine except one thing: when I trying to debug code of my WCF service it works, but when I want to watch state of any variable it says: "...
Ceridan's user avatar
  • 2,576
40 votes
17 answers
112k views

I start a VS2013 VB.Net MVC5 Web Application, set a breakpoint in HomeController About method and run "Start Debugging", navigate to About page and receive the message "Code not running - The current ...
Graeme's user avatar
  • 727
63 votes
25 answers
91k views

I have installed VS 2015 RTM (nothing else) and I'm unable to debug any solution, not matter if it's an existing one or a brand new one (created with VS 2015 and compiled against .Net Framework 4.6), ...
rene_r's user avatar
  • 954
43 votes
5 answers
72k views

There is an external workflow that executes C# scripts and is able to work with DLL files(my class library). Is it possible to attach debug to my class library project so breakpoint will hit once ...
Sergejs's user avatar
  • 2,578
22 votes
3 answers
17k views

I have the following code: Task load = Task.Factory.StartNew(() => {//Some Stuff Which Throws an Exception}); try { load.Wait(); } catch (AggregateException ex) { MessageBox.Show("...
Krimson's user avatar
  • 7,739
22 votes
2 answers
12k views

Here's what I've tried: Made a new Console App (.NET Framework) in Visual Studio 2017. Added the following code: static void Main(string[] args) { new Dictionary<int, int>().TryGetValue(3,...
Jon's user avatar
  • 5,355
105 votes
33 answers
252k views

I'm working with an ASP.NET MVC project that seems to be having some issues when attaching to the IIS process (w3wp.exe). I'm running the solution and IIS 8.5 on my own local machine so I wouldn't ...
My Stack Overfloweth's user avatar

15 30 50 per page
1
2 3 4 5
21