How to measure time in milliseconds using C#

2 Answers

0 votes
using System;
 
internal static class DateTimeTools {
    private static readonly System.DateTime Jan1st1970 = new System.DateTime(1970, 1, 1, 0, 0, 0, System.DateTimeKind.Utc);
     
    public static long CurrentUnixTimeMillis() {
        return (long)(System.DateTime.UtcNow - Jan1st1970).TotalMilliseconds;
    }
}
 
public class TimeInMilliseconds
{
    public static void Main(string[] args)
    {
        long startTime = DateTimeTools.CurrentUnixTimeMillis();
 
        for (int i = 0; i < 20000000; i++) ;
 
        long estimatedTime = DateTimeTools.CurrentUnixTimeMillis() - startTime;
 
        Console.WriteLine(estimatedTime);
    }
}
 
 
/*
run:
     
20
    
*/

 



answered Jun 28, 2024 by avibootz
edited Jun 28, 2024 by avibootz
0 votes
using System;
using System.Diagnostics;

public class TimeInMilliseconds
{
	public static void Main(string[] args)
	{
		var stopwatch = new Stopwatch();
        stopwatch.Start();
            
        for (int i = 0; i < 20000000; i++) ;
        
        stopwatch.Stop();
            
        var elapsed_time = stopwatch.ElapsedMilliseconds;

		Console.WriteLine(elapsed_time);
	}
}


/*
run:
    
17
   
*/

 



answered Jun 28, 2024 by avibootz

Related questions

1 answer 106 views
1 answer 142 views
1 answer 137 views
2 answers 175 views
1 answer 135 views
2 answers 154 views
154 views asked Jun 28, 2024 by avibootz
2 answers 114 views
...