gpt4 book ai didi

c# - "Hello World"通过 PInvoke

转载 作者:太空狗 更新时间:2023-10-29 21:21:49 25 4
gpt4 key购买 nike

我正在尝试用 C# 做一些需要调用一些非托管 DLL 的东西,我对这个过程一无所知!我找到了一个 "Hello World" tutorial这应该像从底部复制和粘贴几行代码一样简单:

using System;
using System.Runtime.InteropServices;

namespace PInvokeTest
{
class Program
{
[DllImport("msvcrt40.dll")]
public static extern int printf(string format, __arglist);

public static void Main()
{
printf("Hello %s!\n", __arglist("World"));
Console.ReadKey();
}
}
}

这会编译并运行到完成,没有任何错误,但是当它到达 ReadKey() 时没有打印任何内容。

我是否错过了一些重要的设置步骤?该项目是为 .NET 4.6.1 构建的(以防 DLL 版本控制或其他问题)。

最佳答案

您使用的 msvcrt* 版本可能是问题所在。如果我使用您未修改的代码创建控制台应用程序,我会得到相同的结果——没有输出。

如果我将引用的 dll 从 msvcrt40.dll 更改为 msvcr120.dll,那么我会看到预期的输出。

[DllImport("msvcr120.dll")]
public static extern int printf(string format, __arglist);

public static void Main()
{
printf("Hello %s!\n", __arglist("World"));
Console.ReadKey();
}

附加信息

msvcrt* 的各种编号版本跟踪 Visual Studio 的版本:

  • MSVCRT70.DLL Visual Studio .NET
  • MSVCRT71.DLL Visual Studio 2003
  • MSVCRT80.DLL Visual Studio 2005
  • MSVCRT90.DLL Visual Studio 2008
  • MSVCRT100.DLL Visual Studio 2010
  • MSVCRT110.DLL Visual Studio 2012
  • MSVCRT120.DLL Visual Studio 2013

这种版本编号方法在 VS2015 中发生了变化,因为这会造成困惑和脆弱的依赖链。有关这些更改的更多信息,请参见此处:

The Great CRT Refactoring

Introducing the Universal CRT

关于c# - "Hello World"通过 PInvoke,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34302729/

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