Execution time measurement

Source: Internet
Author: User

 

. NET Framework provides a set of corresponding diagnosticsProgram, System. Diagnostics. Stopwatch provides a set of attributes and methods for running time measurement.

 

 

Stopwatch stopwatch =   New Stopwatch ();
Stopwatch. Start ();

//Some code you need run
Stopwatch. Stop ();
StringTime=Stopwatch. elapsedmilliseconds. tostring ();

 

It's easy to see the middleCodeThe execution time is elapsed.

If you are interested, you can use macros to play the game:

 

# If Debug
Stopwatch stopwatch =   New Stopwatch ();
Stopwatch. Start ();
# Endif
// Some code you need run
# If Debug
Stopwatch. Stop ();
String Time = Stopwatch. elapsedmilliseconds. tostring ();
# Endif

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.