当我在带有附加调试器的设备上启动此示例程序时,会发生严重错误。
这是我们实际应用程序中发生的事情的精简版本。
我发现的是:
- 必须附加调试器
- 必须以某种方式填充内存(我认为这将强制垃圾收集)
- 垃圾(位图)对象必须存在。其他对象可能会导致相同的错误
- 必须显示表单(如果使用 Application.Run() 或 ShowDialog,则没有区别)
然后,当表单可见并且 GC 收集位图时,会发生严重错误。
我正在运行带有 .NET Compact Framework 3.5 的 WindowsCE 6 R3。
static class Program {
static void Main() {
// Fill up memory - Depends on device
var memory = new int[100000 * 150];
// Settings the priority higher will raise the error earlier.
// With Priority set to Normal the EXE won't get freed correct.
// Without this line i have to reboot the CE after every test run...
Thread.CurrentThread.Priority = ThreadPriority.Highest;
// 80 is just random choosen. The error occurs also with 30 Bitmaps...
for (int o = 1; o < 80; o++) {
// Create a Bitmap and don't free it manually. The
// The garbage collector will take care of it :)
var bitmap = new Bitmap(100, 100);
// When i dispose the Bitmap, everything works fine...
//bitmap.Dispose();
}
// Force a GC run
System.Diagnostics.Debug.WriteLine(GC.GetTotalMemory(true));
// Then error occurs when the form is shown.
System.Windows.Forms.Application.Run(new System.Windows.Forms.Form());
}
}
我已经找到了类似的问题,但没有答案...
- 如何调试在 Windows CE 6 的 .NET CF 3.5 WinForms 应用程序中调用 Application.Exit() 后发生的致命错误?
- CE 6.0 / .NET CF 3.5 应用程序遇到严重错误 (MC3100)
到目前为止我已经尝试过:
- 手动清理所有资源。我已经搜索了所有位图创作并处理或缓存了它们。错误仍然存在,不仅仅是位图不好......