我的目标是致电System.Diagnostics.Stopwatch。我尝试了两种方法来引用System.Diagnostics: 1.使用System.Diagnostics; 然后对系统加下划线,并说需要名称空间限定的术语。 2.使用名称空间System :: Diagnostics; 然后,这条线开始工作,并且下面的秒表变为绿色,但带下划线的绿色表示不允许输入类型名称。
在右边的参考文件夹中,我已经包含System.dll和System.Diagnostics。*。dll。它仍然不起作用。我不知道该怎么办。
#include "Windows.h"
#include "clock.h"
#include <iostream>
#include <string>
#include <chrono>
#include <thread>
#using <System.dll>
#using <system.dll>
using namespace std;
//using namespace System::Diagnostics;
using System.Diagnostics;
int main() {
StartingTime = Stopwatch.GetTimestamp();
...
}