将Swell32.dll添加到VisualStudio中

本文关键字:VisualStudio 添加 Swell32 dll | 更新日期: 2023-09-27 18:04:29

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

我正试图通过在我的项目中添加引用,将swedll32.dll作为引用添加到visualstudio2010中。

但它给出了一个错误信息:

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吗?

将Swell32.dll添加到VisualStudio中

dll是本机的非托管dll。开发始于1997年,比.NET问世早了4年。您需要找到PInvoke方法的方法,或者使用更适合与之接口的编程语言,如CC++

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