将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吗?
dll是本机的非托管dll。开发始于1997年,比.NET
问世早了4年。您需要找到PInvoke
方法的方法,或者使用更适合与之接口的编程语言,如C
或C++
。
您可能想开始阅读有关DllImport的内容,这是一种导入本机dll以从托管代码调用的方法。这是一个很好的起点。