gpt4 book ai didi

c# - 使用非托管 "dll"对处理时间的影响。

转载 作者:太空宇宙 更新时间:2023-11-03 19:02:48 26 4
gpt4 key购买 nike

我正在使用名为 VTC7200_IO.dll非托管 dll。为了从 dll 中获取函数,我使用下面编写的代码(示例)

    [DllImport("kernel32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool AllocConsole();

// Intialise IO Library
[DllImport("VTC7200_IO.dll", CallingConvention = CallingConvention.Cdecl, EntryPoint = "Library_Initial", CharSet = CharSet.Ansi)]
public static extern int Library_Initial();

我的问题是,当您重复导入 dll 文件时,处理时间 会发生什么情况。任何人都可以给出一个 conclusive 答案吗,因为我正在开始一个项目并且正在考虑使用 C# 而不是 C++ 但我想知道处理时间是否会有很大差异。

最佳答案

如果您担心性能,那么您不应将 P/Invoke 与 C# 结合使用,而应使用 C++/CLI 编写包装器。来自 MSDN :

...C++ Interop uses the fastest possible method of data marshaling, whereas P/Invoke uses the most robust method. This means that C++ Interop (in a fashion typical for C++) provides optimal performance by default, and the programmer is responsible for addressing cases where this behavior is not safe or appropriate.

我无法给出关于性能的确切数字,但如果您使用大量非托管调用,那么将其包装在 C++/CLI 类中会比仅提供更高的性能(但开箱即用的健壮性较差)使用 P/调用

关于c# - 使用非托管 "dll"对处理时间的影响。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33395646/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com