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 Epoch].[milliseconds]. Is there an equivalent to Java's SimpleDateFormat in C# ?
|
feedback
|
|
Simplest way is probably to use something like:
Three things to note:
| ||||
|
feedback
|
| |||
|
feedback
|
| |||||||
feedback
|
|
This is from a blog posting by Stefan Henke:
| |||
|
feedback
|
|
Hooray for MSDN DateTime docs! Also see TimeSpan.
| |||||
feedback
|
|
This is a very common thing people in C# do, yet there is no library for that. I created this mini library https://gist.github.com/1095252 to make my life (I hope yours too) easier. | |||
|
feedback
|