关于 CLR 内核异常----COR_E_NEWER_RUNTIME(0x8013101B)
简介
COR_E_NEWER_RUNTIME,值为0x8013101B,代表的意思是"程序集是由比当前加载的运行时新的运行时生成的,因此无法加载。".它定义在cli-2.0-master\clr\src\inc\corerror.h文件里,如下:
#define COR_E_NEWER_RUNTIME EMAKEHR(0x101B) //The assembly is built by a runtime newer than the currently loaded runtime, and cannot be loaded.
- 上一篇: 仅通过转储来排除内存泄漏
- 下一篇: 使用Java中的InputStream读取文件数据