csharp 如何检测执行某些代码所需时间的示例。这是通过使用Environment类中的TickCount属性完成的。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 如何检测执行某些代码所需时间的示例。这是通过使用Environment类中的TickCount属性完成的。相关的知识,希望对你有一定的参考价值。

int sum;
int start = Environment.TickCount;

Console.WriteLine("Hello!");
sum = 2 + 2;
Console.WriteLine("2 + 2 = " + sum);
Console.WriteLine();

int end = Environment.TickCount;
Console.WriteLine("It took {0} seconds to say hello and add 2 + 2.",
(end - start) / 1000.0);

//  Hello!
//  2 + 2 = 4

//  It took 0.016 seconds to say hello and add 2 + 2.

以上是关于csharp 如何检测执行某些代码所需时间的示例。这是通过使用Environment类中的TickCount属性完成的。的主要内容,如果未能解决你的问题,请参考以下文章

csharp 如何在try结构中使用finally语句以确保执行某些代码的示例。从计算机编程基础知识

csharp 如何在try结构中使用finally语句以确保执行某些代码的示例。从计算机编程基础知识

csharp 与InstallUtil实用程序一起使用以使其执行某些任意代码的C#DLL示例

如何使用Albumentations 对目标检测任务做增强

csharp 此代码段提升了用户的权限,以便从SharePoint对象模型执行某些操作。只有在Elev中声明的项目

csharp 执行基本节点查询以及如何呈现它返回的数据的示例