Код: Выделить всё
[return: MarshalAs(UnmanagedType.LPWStr)]
public static string? GetText()
{
return SomeClass.SomeMethodThatReturnsAString();
}
< /code>
и функция, которая получает эту строку, выглядит так в CPP: < /p>
void OnWriteValue()
{
char16_t const *string = GetText();
if (string)
{
someMethodThatPrints(string);
freeMemoryThatIsAllocatedInCSharp(string);
}
}
Подробнее здесь: https://stackoverflow.com/questions/797 ... p-on-linux
Мобильная версия