C#.NET怎样用代码实现加载DLL并且向DLL中传参数
我现在向用代码实现加载DLL,并向这个DLL中传参数,比如要传三个参数
请哪位高手指点迷津 谢谢!!!
------解决方案--------------------举个例子:
MyDLL.dll中有个接口:
bool Function(int param);
则在C#中应该:
Using System.Runtime.InteropServices;
[DllImport("MyDLL.dll")]
[return: MarshalAs(UnmanagedType.I1)]
public static extern bool Function(int param);
还有很多需要注意的地方。可以互相交流,最近我也在做相关的东西。