C语NET调用 C++ dll 函数 时传递字符串 需要注意的问题

1:C# 调用 返回 字符串 C++ native dll 函数 的注意事项:

a:C++ DLL的返回值,安全的做法是分配一个全局 char 数组,把要返回的 char * 复制到这个 char 数组中,

1 char   buff[255];
2
3 const char* __stdcall ReturnString()
4 {
5   strcpy(buff,"xxxxxxxxxxxxxxx");
6   return buff;
7  }

b:C# 收到 字符串后,需要 Marshal

1 [DllImport("VC.dll", EntryPoint = "ReturnString", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Winapi)]
2 public static extern IntPtr ReturnString();

调用VCDLL的代码...

1 IntPtr intPtr = ReturnString();
2
3 string str = Marshal.PtrToStringAnsi(intPtr);

因为 C++ 返回的是 char* ,是个指针,所以c# 要用 IntPtr 来接回。

Marshal.PtrToStringAnsi MSDN上的解释:将非托管 ANSI 字符串中第一个空值(空值就是\0)之前的所有字符复制到托管 String。将每个 ANSI 字符扩展为 Unicode 字符。

2:用参数传递,即C++dll 函数的参数 定义为 char*,而C#传递 StringBuilder 给 c++

a:c# 创建一个 StringBuilder,并初始化 capacity后传给C++

[DllImport("VC.dll", EntryPoint = "ProcessString", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Winapi)]
public static extern void ProcessString(StringBuilder str);

//调用VCDLL的代码...

StringBuilder str = new StringBuilder(255); //255 是 capacity

ProcessString(str);

MessageBox.Show(str); //不需要Marshal,直接使用

b:C++ DLL函数

const char* __stdcall ProcessString(char* str)
{

  //str 是 c# 创建的 StringBuilder,长度是255
  strcpy(str,"xxxxxxxxxxxxxxx");
  return buff;
}

其他的请

参考msdn中的c++与c#的类型转换 对应关系如下:

C++ ---- C#

传入的char*  ----string

传出的char* ---- StringBuilder(预分配空间)

short  ----short

char ---- byte

char[n] ---- fixed byte[n]

 

结构指针  ----结构指针

函数指针 ---- 委托

时间: 2024-12-16 13:03:05

C语NET调用 C++ dll 函数 时传递字符串 需要注意的问题的相关文章

调用函数时传递的实参个数arguments.length; ,函数定义时的形参个数sum.length

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>范例6-4</title>

IronPython调用C# DLL函数方法

C# DLL源码 using System; using System.Collections.Generic; using System.Text; using System.Security.Cryptography; namespace Common { public class SimpleHash { public string HashCalc(byte[] audioBuffer, byte[] key) { ...... return result; } } } 需要在IronP

Python调用C++DLL函数出错String类型问题

调用c++ 函数原型如下,一直失败,请个日志断点发现 参数未能正确解析. int EXPORT init_ner(string cfg_path); typedef int (*Proc_init_ner)(string cfg_path); int EXPORT fini_ner(); typedef int (*Proc_fini_ner)(); string EXPORT process(string input_jsn_str); typedef string (*Proc_proces

VB调用VC DLL函数

—————————————————————————VC部分————————————————————————————————————— 声明 ******************************************************************************************************** extern "C" _declspec(dllexport)[] _stdcall [] ************************

html使用字符串拼接js函数时传字符串参数

<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> </head> <body> <div i

?c++ 调用DLL函数,出现错误

Run-Time Check Failure #0 - The value of ESP was not properly saved across a function call. This is usually a result of calling a function declared with one calling convention with a function pointer declared with a different calling convention. 错误原因

动态调用DLL函数有时正常,有时报Access violation的异常

动态调用DLL函数有时正常,有时报Access violation的异常 typedef int (add *)(int a,int b); void test() { hInst=LoadLibraryA("aimdtl.dll"); (FARPROC &)add=GetProcAddress(hInst,"add"); add(1,2); } 按这个代码执行,add函数有时OK,有时报Access violation的异常.看到提示,第一反应就是内存异常

254 在js调用函数时,传递变量参数时, 是值传递还是引用传递

问题: 在js调用函数时,传递变量参数时, 是值传递还是引用传递 理解1: 都是值(基本/地址值)传递 理解2: 可能是值传递, 也可能是引用传递(地址值) <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>02_关于数据传递问题</title> </head> <body> <

C#时常需要调用C++DLL

在合作开发时,C#时常需要调用C++DLL,当传递参数时时常遇到问题,尤其是传递和返回字符串是,现总结一下,分享给大家: VC++中主要字符串类型为:LPSTR,LPCSTR, LPCTSTR, string, CString, LPCWSTR, LPWSTR等但转为C#类型却不完全相同. 主要有如下几种转换: 将string转为IntPtr:IntPtr System.Runtime.InteropServices.Marshal.StringToCoTaskMemAuto(string) 将