Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,900 questions

51,831 answers

573 users

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 96 views
1 answer 109 views
1 answer 118 views
2 answers 154 views
1 answer 117 views
2 answers 140 views
140 views asked Jun 28, 2024 by avibootz
2 answers 102 views
...