1

我正在尝试使用通过引用传递字符串的单声道创建方法,这是我拥有的测试代码:

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 通过引用正确传递字符串?

4

1 回答 1

2

通过这样做来修复:

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

正如德尔南所建议的

于 2014-03-15T19:49:15.920 回答