研究了两天,终于找到window ce和mobile下dll的创建和调用方法,记得,在定义源型的时候一定要使用 extern "C" _declspec(dllexport) int sum(int a, int b) { return a+b; } 不要只在头文件里定义,否则在调用时会出错. 同事们,一定要注意了.
一、使用vs2017 创建动态dll文件
方法一:
1、新建-项目-类库
2、创建一个.cs文件 写入代码,例如:建立一个Windows窗体
略丑,简单明了。。。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using Syst