添加Mono内部调用,其中字符串通过引用传递

时间:2014-03-15 19:07:29

标签: c# c++ mono pass-by-reference mono-embedding

我尝试使用mono创建一个方法,其中字符串通过引用传递, 这是我的测试代码:

C ++:

static bool p_TestMethod(int num, MonoString ** response) {

    auto b = mono_string_new(mono_domain_get(), "Test repsonse");
    response = &b;

    return true;
}
//...
mono_add_internal_call("SharpCode.TestClass::Testmethod", p_TestMethod);

C#:

    [MethodImpl(MethodImplOptions.InternalCall)]
    public static extern bool Testmethod(int num, out string response);

    public bool RunTheTest()
    {
        string x;
        Testmethod(0, out x);
        Console.WriteLine("Test: {0}", x);

        return true;
    }

但没有打印回复(仅测试:)

如何使用Mono通过引用正确传递字符串?

1 个答案:

答案 0 :(得分:2)

通过这样做来解决:

*response = mono_string_new(mono_domain_get(), "Test repsonse"); 

正如delnan所建议的