Forum member

jerry_chen

3 posts

Posts by jerry_chen

  1. Build failed on Projects with unsafe code

    Thanks a lot for the quick fix.

  2. Build failed on Projects with unsafe code

    Thanks for your reply. I found the problem is "optional pointer argument" as below. public unsafe class ImageDllAccessor { public void Function(byte* pExcludeCADMask = null) { } } If I changed the function parameter to "Function(byte* pExcludeCADMask)" NCrunch can work with…

  3. Build failed on Projects with unsafe code

    I tried to build a project with unsafe code but failed, below is the error message. ImageDllAccessor is an unsafe class (public unsafe class ImageDllAccessor). The project can be build by Visual Studio 2013 without problem. Can anyone help me about this issue? Thanks! [13:41:20.6545-LocalB…