我正在使用 Visual Studio 2012 在 C# 中创建一个 WinForm 应用程序,并且在调试它时出现错误:
vshost32-clr2.exe has stopped working
我已经搜索过,但大多数结果都是针对 Visual Studio 2010 及更低版本的,我得到了类似的解决方案,我认为这些解决方案不适用于 Visual Studio 2012:
Properties -> Debug -> Enable unmanaged code debugging
来源:调用非托管 DLL 时 vshost32.exe 崩溃
额外细节 :
我的项目不使用任何 DLL。
就我的项目进展而言,它仅在宽度为17时发生。
我使用以下代码:
Bitmap tmp_bitmap = new Bitmap(Width, Height, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
Rectangle rect = new Rectangle(0, 0, 16, tmp_bitmap.Height);
System.Drawing.Imaging.BitmapData bmpData =
tmp_bitmap.LockBits(rect, System.Drawing.Imaging.ImageLockMode.ReadWrite,
tmp_bitmap.PixelFormat);
unsafe
{
// Get address of first pixel on bitmap.
byte* ptr = (byte*)bmpData.Scan0;
int bytes = Width * Height * 3; //124830 [Total Length from 190x219 24 Bit Bitmap]
int b; // Individual Byte
for (int i = 0; i < bytes; i++)
{
_ms.Position = EndOffset - i; // Change the fs' Position
b = _ms.ReadByte(); // Reads one byte from its position
*ptr = Convert.ToByte(b);
ptr++;
// fix width is odd bug.
if (Width % 4 != 0)
if ((i + 1) % (Width * 3) == 0 && (i + 1) * 3 % Width < Width - 1)
{
ptr += 2;
}
}
// Unlock the bits.
tmp_bitmap.UnlockBits(bmpData);
}
我认为发布我的代码是必要的,因为它仅在将此类值设置为我的方法时才会发生。
我希望你能帮我解决这个问题。非常感谢您!