在 C# 中分析方法以了解运行需要多长时间

Profiling a method in C# to know how long does it take to run(在 C# 中分析方法以了解运行需要多长时间)
本文介绍了在 C# 中分析方法以了解运行需要多长时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要获取时间报告以了解在类中运行 C# 方法需要多长时间.我考虑使用 profiler 来做到这一点.

I need to get a timing report to know how long does it take to run a C# method in a class. I think about using profiler to do that.

输入是类中方法的名称,输出是

The input is the name of a method in a class, the output is

  1. 什么方法/类调用这个方法.
  2. 运行方法的时间量.

Visual Studio 2010 和 Mono 有哪些工具/商业产品可用?

What tools/commercial products are available for that for Visual Studio 2010 and Mono?

推荐答案

另一个开源分析器是 slimtune http://code.google.com/p/slimtune/

Another opensource profiler is slimtune http://code.google.com/p/slimtune/

或者,您可以使用 COM 和 ICorProfilerCallback 接口创建自己的分析器,但如果您想要一个非常定制的分析器集合,我会这样做.

Alternatively you can create your own profiler using COM and the ICorProfilerCallback interfaces, but I would do this if you wanted a very customized profiler gathering.

这篇关于在 C# 中分析方法以了解运行需要多长时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)