使用C++/CLR写的话报错了,这是这么回事
#include <stdio.h>
#include <sys/timeb.h>
#include <winsock2.h>
#include <iostream>
#include "stdafx.h"
using namespace std;
void main()
{
struct timeb tb;
ftime(&tb);
cout << tb.time * 1000 + tb.millitm << endl;
system("pause");
}