我需要为c#中的研究项目获得每秒处理器的时钟数。
我阅读了Stopwatch.Frequency和Stopwatch.IsHighResolution的文档,但如果这真的是我需要的话,我真的无法弄明白。
我在2台不同的机器上使用已编译的.EXE进行了测试,结果不同。
用于测试的代码是:
using System;
using System.Diagnostics;
namespace Frequency
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(String.Format("{0} - {1}", Stopwatch.Frequency, Stopwatch.IsHighResolution));
Console.ReadKey();
}
}
}
你能帮助我吗?
感谢。