What is the equivalent of Java's System.currentTimeMillis() in C#?

link|improve this question
Just curious, why do you need the millis since 1970? – Alex B Nov 14 '08 at 16:00
feedback

7 Answers

An alternative:

private static readonly DateTime Jan1st1970 = new DateTime
    (1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);

public static long CurrentTimeMillis()
{
    return (long) (DateTime.UtcNow - Jan1st1970).TotalMilliseconds;
}
link|improve this answer
feedback

We could also get a little fancy and do it as an extension method, so that it hangs off the DateTime class:

public static class DateTimeExtensions
{
    private static DateTime Jan1st1970 = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
    public static long currentTimeMillis(this DateTime d)
    {
        return (long) ((DateTime.UtcNow - Jan1st1970).TotalMilliseconds);
    }
}
link|improve this answer
Interesting mixture of languages you've got there ;) – Jon Skeet Nov 14 '08 at 15:34
Lol! I do that sometimes: have to switch back and forth between the two a lot, but normally it's in the IDE so I have instant feedback on it. – Joel Coehoorn Nov 14 '08 at 17:46
feedback

the System.currentTimeMillis() in java returns the current time in milliseconds from 1/1/1970

c# that would be

public static double GetCurrentMilli()
    {
        DateTime Jan1970 = new DateTime(1970, 1, 1, 0, 0,0,DateTimeKind.Utc);
        TimeSpan javaSpan = DateTime.UtcNow - Jan1970;
        return javaSpan.TotalMilliseconds;
    }

edit: made it utc as suggested :)

link|improve this answer
DateTime.Now uses the local time, not UTC. I don't know exactly what happens when you subtract an unknown kind of DateTime from a local one, but it's best to set both of them to UTC :) – Jon Skeet Nov 14 '08 at 15:35
feedback

A common idiom in Java is to use the currentTimeMillis() for timing or scheduling purposes, where you're not interested in the actual milliseconds since 1970, but instead calculate some relative value and compare later invocations of currentTimeMillis() to that value.

If that's what you're looking for, the C# equivalent is Environment.TickCount.

link|improve this answer
feedback

If you are interested in TIMING, add a reference to System.Diagnostics and use a Stopwatch.

For example:

var sw = Stopwatch.StartNew();
...
var elapsedStage1 = sw.ElapsedMilliseconds;
...
var elapsedStage2 = sw.ElapsedMilliseconds;
...
sw.Stop();
link|improve this answer
feedback

Here is a simple way to approximate the Unix timestamp. Using UTC is closer to the unix concept, and you need to covert from double to long.

TimeSpan ts = (DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc));
long millis = (long)ts.TotalMilliseconds;
Console.WriteLine("millis={0}", millis);

prints:

millis=1226674125796
link|improve this answer
feedback

The framework doesn't include the old seconds (or milliseconds) since 1970. The closest you get is DateTime.Ticks which is the number of 100-nanoseconds since january 1st 0001.

link|improve this answer
1  
Would (DateTime.Ticks/10000000)-(the number of seconds between 0001 and 1970) give an accurate answer? – Liam Apr 23 '09 at 10:54
feedback

protected by Anthony Pegram Jun 1 '11 at 4:38

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.