Tagged Questions

4
votes
6answers
3k views

Parsing unix time in C#

Is there a way to quickly / easily parse Unix time in C# ? I'm brand new at the language, so if this is a painfully obvious question, I apologize. IE I have a string in the format [seconds since ...
0
votes
2answers
118 views

Unix time conversions in C#

I am trying to get the GMT in unix time. I use the following code: public static long GetGMTInMS() { var unixTime = DateTime.Now.ToUniversalTime() - new ...
0
votes
1answer
41 views

Unix time oddity, or something else?

I'm writing an app in C# that calls methods on a 3rd party web service (but this question is language independent). One of the methods I have to call sets a "start time." The method expects the date ...