博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#嵌入C++
阅读量:5074 次
发布时间:2019-06-12

本文共 726 字,大约阅读时间需要 2 分钟。

你的问题应该是怎么在C#里调用写成的后编译好的dll,对吗?

因为如果C#里直接C++是不会通过编译的。

下面是一个C#里调用写成的后编译好的dll 的例子:

C# 部分:

// Sample program to call unmanaged code

using System;

using System.Runtime.InteropServices;

 

class PInvoke1App

{

[DllImport("user32.dll")]

static extern int MessageBoxA(int hWnd, string strMsg, string strCaption, int iType);

 

public static void Main()

{

MessageBoxA(0, "Hello, World!", "This is called from a C# app!", 0);

}

}

C++部分,编译成user.dll

#include <windows.h>

 

BOOL __stdcall DllMain(HINSTANCE hInst, DWORD dwReason, LPVOID lpReserved) {

return TRUE;

}

 

__declspec(dllexport) void __stdcall Message(char* p_szMessage) {

MessageBox(NULL, p_szMessage, "Message from DLL", MB_OK);

}

 

转载于:https://www.cnblogs.com/pugongying123/p/8327572.html

你可能感兴趣的文章
一步步教你学会browserify
查看>>
Jmeter入门实例
查看>>
亲近用户—回归本质
查看>>
中文脏话识别的解决方案
查看>>
CSS之不常用但重要的样式总结
查看>>
Python编译错误总结
查看>>
URL编码与解码
查看>>
日常开发时遇到的一些坑(三)
查看>>
Eclipse 安装SVN插件
查看>>
深度学习
查看>>
TCP粘包问题及解决方案
查看>>
构建之法阅读笔记02
查看>>
添加按钮
查看>>
移动端页面开发适配 rem布局原理
查看>>
Ajax中文乱码问题解决方法(服务器端用servlet)
查看>>
会计电算化常考题目一
查看>>
阿里云服务器CentOS6.9安装Mysql
查看>>
剑指offer系列6:数值的整数次方
查看>>
js 过滤敏感词
查看>>
poj2752 Seek the Name, Seek the Fame
查看>>