I have noticed that performance-related improvements seem to have a very low priority at microsoft compared to adding new language features and APIs. Longstanding issues such as the total lack of inlining when using value types are not fixed on the x64 CLR despite
Does anyone know the secret to doing this? When I try it I don't even get a stop on my DragEnter, DragOver, DragLeave or of course DragDrop breakpoints. I have of course set the control's AllowDrop property to true, and I
Trying to figure out managed memory leak I found out the GEN2 and LOH takes much more than expected Looking at LOH (Gen 3) "!dumpgen 3 -stat " shows 39 System.Object[] taking 805,700,296 bytes
I would like to improve my knowleg of the CLR. I have not found Microsoft's equal to the Java Language Specification. I do read alot of MSDN, but it's more situational than a language spec.
I have a C# VisStudio Add-in that implements a WindowActivated handler; the event handler is correctly hooked to the WindowEvents.WindowActivated event. It seems that Window events for the main application window are not included -- is that true?
VisStudio 2008 add-in, created with the New Add-In Wizard, C#. When I try to enable my add-in I get this: The Add-in 'CBAddIn2' failed to load or caused an exception. <snip text about renaming file...>
Working on a VisStudio 2008 addin, using managed C++ (C++/CLR in the New Project wizard). In the OnConnection() function, I want to add a handler to the WindowEvents collection.