我正在尝试在C#中创建一些需要调用一些非托管DLL的东西,这个过程对我一无所知!我发现了一个"Hello World"教程,应该像从底部复制和粘贴几行代码一样简单:
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中发生了变化,这是由于这造成了混乱和脆弱的依赖链.有关这些更改的更多信息,请访问:
伟大的CRT重构
介绍通用CRT