The thread tried to read from or write to a virtual address for which it does not have the appropriate access

有些话、适合烂在心里 提交于 2019-12-06 00:20:22

The nature of the error message makes it unlikely to be a problem with the .NET 2.0 code. That is because .NET does not allow you to even attempt to read/write memory that it is not suppose to.

  • Check to see if you have any unsafe code in your extension. Code of this nature may be able to skirt the verification checks the CLR would normally perform.
  • Check to see if the code your extension uses any unmanaged code (COM or P/Invoke). The error may be generated there.
  • It is possible that there is a bug in the .NET CLR that causes problems when run in Citrix environment.

The first thing I would do is analyze that dump file to see which module the fault occurred in. You can download the Windows Debugging Tools to assist with this effort.

I don't know if this will help.

I got the identical message when opening a project using Schneider Unity Pro. After a tedius and lengthy process of elimination, the problem was isolated to the “Do not keep history of recently opened documents” policy being enabled.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!