c++怎么传递string[] 到c#
答案:2 悬赏:0 手机版
解决时间 2021-02-25 09:53
- 提问者网友:川水往事
- 2021-02-24 18:42
c++怎么传递string[] 到c#
最佳答案
- 五星知识达人网友:孤独入客枕
- 2021-02-24 19:11
我也在找这个问题的答案,现在只知道传char[][]到c#,然后在c#里转为string[],下面是关键代码,希望可以帮到你,如果哪天你找到直接传string[]到c#的方法了,也能告知一下。
c++:
.h声明
extern "C" __declspec(dllexport) int __stdcall GetTableContent(char ch[][64], int *num);//ch传出到c#,可转为string[],num记录每一行的长度
.cpp实现
int __stdcall GetTableContent(char ch[][64], int *num)
{//给ch[][64]赋值}
c#:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
...
[DllImport(@"Dll.dll", EntryPoint = "GetTableContent", SetLastError = true, CharSet = CharSet.Ansi, ExactSpelling = false, CallingConvention = CallingConvention.StdCall)]
extern static int GetTableContent([Out, MarshalAs(UnmanagedType.LPArray)] char[,] ch, int[] n10);
...
char[,] t1 = new char[r, 64];//r为c++中二维数组的行数
int[] n10 = new int[r];
int r1 = GetTableContent3(t1, n10);
//成功取出,接下来拼每一行单个string
这是我找到的其它资料,不过没看懂。http://download.csdn.net/download/clever101/9489018#comment;
c++:
.h声明
extern "C" __declspec(dllexport) int __stdcall GetTableContent(char ch[][64], int *num);//ch传出到c#,可转为string[],num记录每一行的长度
.cpp实现
int __stdcall GetTableContent(char ch[][64], int *num)
{//给ch[][64]赋值}
c#:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
...
[DllImport(@"Dll.dll", EntryPoint = "GetTableContent", SetLastError = true, CharSet = CharSet.Ansi, ExactSpelling = false, CallingConvention = CallingConvention.StdCall)]
extern static int GetTableContent([Out, MarshalAs(UnmanagedType.LPArray)] char[,] ch, int[] n10);
...
char[,] t1 = new char[r, 64];//r为c++中二维数组的行数
int[] n10 = new int[r];
int r1 = GetTableContent3(t1, n10);
//成功取出,接下来拼每一行单个string
这是我找到的其它资料,不过没看懂。http://download.csdn.net/download/clever101/9489018#comment;
全部回答
- 1楼网友:梦中风几里
- 2021-02-24 20:11
c++:char 数组名[数组大小] ---- c#:MarshalAs(UnmanagedType.ByValTStr, SizeConst = 数组大小)] public string 数组名; ushort
我怎么记得C++本身没有string 数组这个概念呢。。都是cha数组的数组吧?
我怎么记得C++本身没有string 数组这个概念呢。。都是cha数组的数组吧?
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯