在C#里调用dll一般步骤:
1.将那个*.dll拷贝到bin/debug目录下,例如:add.dll;
2.加上using,例如:using System.Runtime.InteropServices;
3.声明外部方法,例如:[DllImport("add.dll")]
public static extern Int32 SumArray(Int32* point, Int32 length);
4.调用,例如:sum = SumArray(point, source.Length);
5.因为使用了指针,所以需要把类设为unsafe;
public unsafe partial class Form1
6.设定项目的unsafe属性即可。
在WinFrom中有个WebBrowser 控件,该控件是一个浏览器的控件,和使用浏览器查看网页的效果是一样的。 |