“使用”与 [DllImport] 相比?

发布于 2024-10-21 18:20:57 字数 54 浏览 6 评论 0原文

我想知道最顶层声明的引用是什么以及为什么我们仍然需要使用 DllImport?我说的是 C#。

I was wondering what is the very top most declared references and why we still need to use DllImport? I'm talking C#.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

各自安好 2024-10-28 18:20:57

来自 MDSN 文档

在托管应用程序中重用现有的非托管代码时,DllImport 属性非常有用。例如,您的托管应用程序可能需要调用非托管 WIN32 API。

基本上,当您编写 .NET 应用程序时,并且库没有托管包装器(它是用非托管代码编写的),您需要使用 DllImport 与其进行互操作。否则,您可以使用 using 语句引用托管库,就像通常引用任何基类库一样。

From the MDSN documentation:

The DllImport attribute is very useful when reusing existing unmanaged code in a managed application. For instance, your managed application might need to make calls to the unmanaged WIN32 API.

Basically, when you're writing a .NET application, and a library does not have a managed wrapper (it's written in unmanaged code), you need to use DllImport to interoperate with it. Otherwise, you can reference managed libraries with a using statement like you normally would any base class library.

情话已封尘 2024-10-28 18:20:57

当您需要调用非托管代码时使用它。

例如,您可能需要调用 Windows API 函数,因此您可以声明如下内容:

[DllImport("Advapi32.dll", EntryPoint="GetUserName", ExactSpelling=false,
SetLastError=true)]
static extern bool GetUserName(
[MarshalAs(UnmanagedType.LPArray)] byte[] lpBuffer,
[MarshalAs(UnmanagedType.LPArray)] Int32[] nSize );

引用:
http://www.csharphelp.com/ 2006/01/call-unmanaged-code-part-1-simple-dllimport/

It's used when you need to call unmanaged code.

For example, you might need to make a call to a windows API function, so you could do declare something like this:

[DllImport("Advapi32.dll", EntryPoint="GetUserName", ExactSpelling=false,
SetLastError=true)]
static extern bool GetUserName(
[MarshalAs(UnmanagedType.LPArray)] byte[] lpBuffer,
[MarshalAs(UnmanagedType.LPArray)] Int32[] nSize );

references:
http://www.csharphelp.com/2006/01/call-unmanaged-code-part-1-simple-dllimport/

风情万种。 2024-10-28 18:20:57

using 指令包含来自引用的托管程序集的命名空间。
DllImport 用于从非托管 DLL 导入方法。

The using directive includes a namespace from a referenced managed assembly.
The DllImport is used to import methods from unmanaged DLLs.

故人的歌 2024-10-28 18:20:57

DLLImport 用于将本机 dll 库导入到托管(.net)应用程序中。例如,可以导入用 C++ 编写的库并在您的 c# 项目中使用。

using 用于引用位于托管引用 dll 之一中的命名空间。这些通常是 .net 程序集。

DLLImport is used to import a native dll library into a managed(.net) application. For example a library written in C++ can be imported and used in your c# project.

Using is used to reference a namespace located in one of the managed referenced dlls. These are normally .net assemblies.

居里长安 2024-10-28 18:20:57

Visual Studio 为您创建基本引用(例如系统)。

除非您想使用本机库,否则不需要 DllImport

Visual Studio creates for you the basic references (System for example).

You don't need DllImport unless you want to make use of native libraries

安稳善良 2024-10-28 18:20:57

DllImport 用于导入包含在不受 .NET 管理的 DLL 中的函数。 using 语句允许您的代码轻松引用其他 .NET 程序集,而无需使用完全限定名称。

DllImport is for importing a function that is contained in a DLL that is not managed by .NET. The using statements are for allowing your code to easily reference other .NET assemblies without using the fully qualified name.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文