What could be causing a System.TypeLoadException?

后端 未结 8 1343
轮回少年
轮回少年 2020-11-27 20:39

I\'m developing, with VS2008 using C#, an application for Honeywell Dolphin 6100, a mobile computer with a barcode scanner that uses Windows CE 5.0 like OS.

I want to

8条回答
  •  生来不讨喜
    2020-11-27 21:42

    In my case problem was that I had two projects that used the same libraries in one solution. I've updated DLLs only in first project. So when I built solution, second project its override DLLs from first project(project build order).

    Example:

    Solution:

    --MainProject

    ------MyDll v5.3.2.0

    --Prototype

    ------MyDll v5.0.0.0

    Problem gone after update DLLs in second project.

提交回复
热议问题