What is the equivalent of Java's System.currentTimeMillis() in C#?
feedback
|
|
An alternative:
| |||
|
feedback
|
|
We could also get a little fancy and do it as an extension method, so that it hangs off the DateTime class:
| |||||
feedback
|
|
the c# that would be
edit: made it utc as suggested :) | ||||
feedback
|
|
A common idiom in Java is to use the If that's what you're looking for, the C# equivalent is | |||
|
feedback
|
|
If you are interested in TIMING, add a reference to System.Diagnostics and use a Stopwatch. For example:
| ||||
|
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
prints:
| |||
|
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. | |||||
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.