如何在执行期间测量指令计数?

时间:2015-04-21 10:12:53

标签: c# .net profiler

我想测量方法示例中执行的指令数量。

int a=0;
functionTest();
a=getCountInstruction() // return the number of instruction executed until now.

他们使用Profiler或某些类做任何方法吗?

1 个答案:

答案 0 :(得分:0)

调用方法时必须添加增量计数器

static int a=0;
functionTest()
{
    a++;
    //your code
}