I am running Visual Studio 2010 in Windows 7 Professional 64-Bit in VMware 4.1.1 running on 2 processors and roughly 2GB of ram. On debugging a simple application Visual Studio seems to hang/unresponsive. I then get a bubble message informing me that "Visual Studio is busy waiting for an internal [...] read more
I am trying to debug an dotnet core application on another machine(linux) from Visual Studio 2017 I can connect via ssh to the remote machine. I installed the debugger via the follwing command. sudo apt-get install unzip curl -sSL https://aka.ms/getvsdbgsh | bash /dev/stdin -v vs2017u5 -l ~/vsdbg I can't attach [...] read more
How can I debug a class library in VS Code? I have an ASP.NET Core project and a class library that is in a separate solution. The class library is going to be a nuget package. I've added a project reference to the class library in my ASP.NET Core project [...] read more
Short version: Could passing the handle from GlobalAlloc(GMEM_MOVEABLE, Size) to Marshal.PtrToStructure() and Marshal.FreeHGlobal() cause memory corruption? Long version: I'm using Windows Global memory allocation to pass a data structure back and forth between a Delphi and C# application (the fact that it's Delphi isn't really significant to this question, because [...] read more