Come ottenere il contenuto dell'array da C ++ dll in C #
Voglio usare le funzioni dalla DLL in C ++ con C #.
Memorizzo i dati della stringa in un vettore.
Il mio file C ++ contiene:
#include "stdafx.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
extern "C" __declspec(dllexport) std::vector<std::string> GetProduct();
std::vector<std::string> GetProduct()
{
std::vector<std::string> vectProduct;
vectProduct.push_back("Citroen");
vectProduct.push_back("C5");
vectProduct.push_back("MOP-C5");
return vectProduct;
}
In C #
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Runtime.InteropServices;
namespace ConsoleApplication
{
class Program
{
[DllImport("ProductLibrary.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern StringBuilder GetProduct();
static void Main(string[] args)
{
StringBuilder vectProduct_impl = GetProduct();
}
}
}
Non so come continuare a esplorare l'array in c #. Non so se l'uso del vettore sia ottimale. se hai altra soluzione sono pronto.
Per favore aiuto.
Risposte
Il mio modo preferito per passare un array di stringhe C ++ -> C # è usare un delegato.
C #:
// If possible use UnmanagedType.LPUTF8Str
// or under Windows rewrite everything to use
// wchar_t, std::wstring and UnmanagedType.LPWStr
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void AddAnsi([MarshalAs(UnmanagedType.LPStr)] string str);
[DllImport("CPlusPlusSide.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern void TestReturnArrayStrings(AddAnsi add);
poi
var lst = new List<string>();
TestReturnArrayStrings(lst.Add);
foreach (string str in lst)
{
Console.WriteLine(str);
}
E C ++:
#include <string>
#include <vector>
extern "C"
{
__declspec(dllexport) void TestReturnArrayStrings(void (add)(const char* pstr))
{
std::string str1 = "Hello";
std::string str2 = "World";
add(str1.data());
add(str2.data());
// Example with std::vector
add("--separator--"); // You can even use C strings
std::vector<std::string> v = { "Foo", "Bar" };
// for (std::vector<std::string>::iterator it = v.begin(); it != v.end(); ++it)
for (std::vector<std::string>::const_iterator it = v.begin(); it != v.end(); ++it)
{
add(it->data());
}
add("--separator--"); // You can even use C strings
// With C++ 11
// for (auto& it: v)
for (const auto& it: v)
{
add(it.data());
}
}
}
Qui il "trucco" è che C # passa a C ++ un delegato al List<string>.Add()
metodo e C ++ "riempie" direttamente il C # List<>
. La memoria gestita da C ++ rimane nel lato C ++, la memoria gestita da C # rimane nel lato C #. Nessun problema di proprietà della memoria incrociata. Come puoi immaginare, è abbastanza facile espandere il "trucco" a qualsiasi altro .Add()
metodo, come HashSet<string>
, o Dictionary<string, string>
.
Come nota a margine, ho creato un GitHub con molti esempi sul marshalling tra C / C ++ e C # (sia .NET Framework che .NET Core / 5.0).
Un modo per farlo è utilizzare la struttura SAFEARRAY di COM poiché è supportata da .NET (l'allocatore .NET utilizzato da P / Invoke è l'allocatore COM), inclusa la maggior parte dei sottotipi associati, come BSTR .
Quindi, in C / C ++, puoi definire questo:
extern "C" __declspec(dllexport) LPSAFEARRAY GetProduct();
LPSAFEARRAY GetProduct()
{
LPSAFEARRAY psa = SafeArrayCreateVector(VT_BSTR, 0, 3);
LONG index = 0;
// _bstr_t is a smart class that frees allocated memory automatically
// it needs #include <comdef.h>
// but you can also use raw methods like SysAllocString / SysFreeString
_bstr_t s0(L"Citroen"); // could use "Citroen" if you really want ANSI strings
// note SafeArrayPutElement does a copy internally
SafeArrayPutElement(psa, &index, s0.GetBSTR());
index++;
_bstr_t s1(L"C5");
SafeArrayPutElement(psa, &index, s1.GetBSTR());
index++;
_bstr_t s2(L"MOP - C5");
SafeArrayPutElement(psa, &index, s2.GetBSTR());
index++;
return psa;
}
E in C #, puoi definire questo:
[DllImport("ProductLibrary.dll", CharSet = CharSet.Unicode)]
[return: MarshalAs(UnmanagedType.SafeArray)]
public static extern string[] GetProduct();