Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for the equivalent to a Java System.currentTimeMilli(), in VB.NET.

What is the method to call? I know about Datetime.Now, but not about the actual conversion to long milliseconds.


More details about my specific need:

I need to manage a login expiration. So most likely when I log in, I will set a "expiration_time_milli", equal to the current time + the timeout value. Then later, if I want to check if my login is valid, I will check is "expiration_time_milli" is still superior to current time.

share|improve this question
1  
+1 for the more details. It's better to explain your problem & ask for the .Net way, rather than look for an exact translation of a Java solution. The latter will produce code that's longer and will look a bit odd to an experienced .Net developer. – MarkJ Dec 8 '10 at 13:01
@MarkJ - yes, I wrote my initial question quickly (lack of time at this particular moment); only after I added details, seeing as the exact translation is indeed not appropriate or efficient. The given answers helped me understand the objects around all this (for example discovering the TimeLapse, with the given examples), though. – Gnoupi Dec 8 '10 at 13:26

4 Answers

up vote 5 down vote accepted

Get the difference between the current time and the time origin, use the TotalMilliseconds property to get time span as milliseconds, and cast it to long.

DirectCast((Datetime.Now - New DateTime(1970, 1, 1)).TotalMilliseconds, Int64)
share|improve this answer
2  
If the the code will be called frequently I would probably create a static (Shared in VB) variable to hold the New DateTime(1970, 1, 1) value since it is, well, static. No need to recreate the object for each call. – Fredrik Mörk Dec 8 '10 at 9:40

You could use

(DateTime.Now-new DateTime(1970,1,1)).TotalMilliseconds

Btw, just guessing by your question what you could be more useful to you might be

DateTime.UtcNow
share|improve this answer

For information, my personal case was fixed with another way, without getting the exact same value as a System.currentTimeMilli():

Dim loginExpirationDate As Date

'...

'Checking code:
If (loginExpirationDate < DateTime.Now) Then
    reconnect()
End If

'update the expiration date
loginExpirationDate = DateTime.Now.AddMilliseconds(timeoutMilli)
share|improve this answer
    Dim myTime As DateTime = DateTime.Now
    MessageBox.Show(myTime.Millisecond)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.