Find Execution time of a Method

后端 未结 5 1128
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-06 03:19

I am making an Image Steganography project for my college. I have finished the project and have kept several different algorithms for hiding data in images.

What I want

5条回答
  •  心在旅途
    2021-02-06 04:15

    You can use StopWatch class:

    var timer = System.Diagnostics.StopWatch.StartNew();
    hideDataUsingAlgorithm();
    timer.Stop();
    var elapsed = timer.ElapsedMilliseconds;
    

提交回复
热议问题