[DllImport("iphlpapi.dll")]
private static extern int GetTcpTable(IntPtr pTcpTable, ref int pdwSize, bool bOrder);
我正在使用这个 dll 并将函数调用为GetTcpTable(IntPtr.Zero, ref iBytes, false)
它在 Windows 7 32 位操作系统中运行良好,但在 64 位操作系统中无法运行。如何使其在 Windows 7 64 位操作系统中运行?