我试图按照关于 C# PInvoke 的简单教程,并创建了以下应该输出测试字符串的程序。
[DllImport("msvcrt.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern int puts(string c);
[DllImport("msvcrt.dll", CallingConvention = CallingConvention.Cdecl)]
internal static extern int _flushall();
public static void Main()
{
puts("Test");
int x = _flushall();
Console.ReadKey();
}
当我运行程序时,在控制台窗口或 Visual Studio 中的输出窗口中看不到任何输出。
_flushall 调用的返回值是 2。我还没有找到关于 msvcrt.dll 的良好参考,以查看可用的函数/入口点以及返回值的含义。