从C#调用C ++ dll引发SEHException

时间:2018-07-19 14:55:35

标签: c# c++ dllimport

我试图从C#代码中调用用C ++构建的dll。 但是,出现以下错误:

  

引发的异常:“ System.Runtime.InteropServices.SEHException”在   dlltest_client.exe类型的未处理异常   发生“ System.Runtime.InteropServices.SEHException”   dlltest_client.exe外部组件引发了异常。

我正在使用cpp代码构建C ++ dll,而cpp代码又导入了头文件:

dlltest.cpp

#include "stdafx.h"
#include <iostream>
#include <string>
#include "dlltest.h"

using namespace std;

// DLL internal state variables:
static string full_;
static string piece_;

void jigsaw_init(const string full_input, const string piece_input)
{
    full_ = full_input;
    piece_ = piece_input;
}

void findPiece()
{
    cout << full_;
    cout << piece_;
}

其中 dlltest.h

#pragma once

#ifdef DLLTEST_EXPORTS
#define DLLTEST_API __declspec(dllexport)
#else
#define DLLTEST_API __declspec(dllimport)
#endif

extern "C" DLLTEST_API void jigsaw_init(
    const std::string full_input, const std::string piece_input);

extern "C" DLLTEST_API void findPiece();

这成功构建了dlltest.dll

我应该利用dll的C#代码是

dlltest_client.cs

using System;
using System.Runtime.InteropServices;

class Program
{
    [DllImport(@"path\dlltest.dll")]
    private static extern void jigsaw_init(string full_input, string piece_input);
    [DllImport(@"path\dlltest.dll")]
    private static extern void findPiece();

    static void Main(string[] args)
    {
        string full = @"path\monster_1.png";
        string piece = @"path\piece01_01.png";
        jigsaw_init(full, piece);
        findPiece();
    }
}

1 个答案:

答案 0 :(得分:2)

您不能将C ++ std::string用于非托管互操作,这是DLL引发异常的原因。

相反,使用指向以null终止的字符数组的指针在C#代码和非托管C ++代码之间传递字符串。

另一个错误是C ++代码使用cdecl调用约定,但是C#代码采用stdcall。您需要使界面的两侧匹配,更改一侧以匹配另一侧。