将Swedll32.dll添加到Visual Studio

时间:2014-05-21 09:53:31

标签: c# visual-studio-2010 dll

http://www.astro.com/swisseph/swephprg.htm

我试图通过在我的项目中添加参考,将swedll32.dll作为参考添加到visual studio 2010中。

但是它给出了一条错误信息:

reference can not be added, please make sure that the file is accesible,
and that is a valid assembly or com component

有人可以帮助我将此dll添加到visual studio吗?

1 个答案:

答案 0 :(得分:1)

dll是一个原生的非托管dll。发展始于1997年,即.NET成立之前4年。您需要找到一种方法PInvoke方法,或使用更适合与CC++进行交互的编程语言。

您可能希望开始阅读DllImport,这是一种导入本机dll以从托管代码调用的方法。 This是一个很好的起点。