Here is a simple test application (in F#, but I checked and the same problem occurs in C#):

let but = new Button(Content = "click me")
but.Click.Add(fun e -> printfn "clicked")
[<STAThread>]
do (new Application()).Run(new Window(Content = but))

When running this in VS 11 preview (no matter which .NET version), the "clicked" message appears ~0.5 seconds after clicking. The same happens in C#. When I go to the folder where the project is stored and run the .exe outside of VS then the message appears instantly after clicking. Apparently the debugging instrumentation is slowing this particular case down tremendously. Why is this and what can be done about it?

link|improve this question

1  
It's not VS2011, it's VS version 11. – BoltClock Nov 18 '11 at 5:54
feedback

2 Answers

up vote 4 down vote accepted

I cant say for sure, but my past experience with developer previews is that they have monitoring and tracing code that is running and submitting feedback to microsoft. This has caused slowdowns for me before in other previews (cant remember if button clicks were affected). You might submit feedback to microsoft though to ensure they know about it.

link|improve this answer
Thanks! I submitted a report here: connect.microsoft.com/VisualStudio/feedback/details/705650/… – Jules Nov 18 '11 at 14:56
feedback

Or... I don't have VS v.11, but similar bug happeneds in VS 2010.

Go to: Debug->Options and Settings->Debug->General, select: "Break when exceptions cross AppDomain...".

If debugger stops now on these exceptions, it means, that the old bug is not fixed. It's Visual Studio bug, so everything works fine when running .exe.

link|improve this answer
I checked that checkbox, but it doesn't make any difference? Can you elaborate on what you mean? I don't have this problem in VS2010. – Jules Nov 18 '11 at 14:46
OK. Then step two: enable catching all exceptions, if you catch now an exception it means that you have a problem I described. We had a big slowdown on clicking on ListViewItems, and debugging this I learnt about this bug, which was submitted to MS. – swiszcz Nov 18 '11 at 15:01
How can I enable catching all exceptions? I don't see any option like that in the settings. – Jules Nov 18 '11 at 15:09
Debug->Exceptions, select all checkboxes – swiszcz Nov 18 '11 at 15:12
Ah, thanks. I checked those checkboxes but still don't get any exceptions... – Jules Nov 18 '11 at 17:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.