Click here to Skip to main content
Click here to Skip to main content

UNIX timestamp to System.DateTime

By , 10 Apr 2005
 

Introduction

This article is a very simple example of how to convert a UNIX timestamp to a System.DateTime in Visual C#.

The UNIX timestamp

The UNIX timestamp represents the time measured in number of seconds since the Unix Epoch (1st of January 1970 00:00:00 GMT), and is well-known to PHP-developers.

How to convert UNIX timestamp to System.DateTime

Given below is an example of how to convert any given UNIX timestamp to a System.DateTime.

// This is an example of a UNIX timestamp for the date/time 11-04-2005 09:25.
double timestamp = 1113211532;

// First make a System.DateTime equivalent to the UNIX Epoch.
System.DateTime dateTime = new System.DateTime(1970, 1, 1, 0, 0, 0, 0);

// Add the number of seconds in UNIX timestamp to be converted.
dateTime = dateTime.AddSeconds(timestamp);

// The dateTime now contains the right date/time so to format the string,
// use the standard formatting methods of the DateTime object.
string printDate = dateTime.ToShortDateString() +" "+ dateTime.ToShortTimeString();

// Print the date and time
System.Console.WriteLine(printDate);

How to convert System.DateTime to UNIX timestamp

I know that this part is just as essential as the above, but it seems that I am running out of time... I will of course return with an update on how to convert the System.DateTime to a UNIX timestamp.

Any comments or suggestions are welcomed!

This is my first article on Visual C# ever, so bare with me...

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Miros79
Other
Denmark Denmark
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Generalummm actually...memberJonathan Lathigee22 Jan '10 - 10:23 
GeneralJavascript-time and UNIX-Epoch-time start at the same Epoch but are measured with a different scalememberprotron1 Mar '11 - 9:54 
GeneralMy vote of 1memberDeceptor114 Jan '10 - 10:04 
Generalactually, none of you bitches are correctmemberEmil Müller4 Apr '08 - 11:25 
GeneralRe: actually, none of you bitches are correctmemberMikhail Tsennykh (devnoob)8 May '12 - 7:13 
QuestionIs this correct?membertobias4215 Oct '06 - 2:39 
Shouldn't it be dateTime.AddMilliseconds(timestamp);
AddSeconds throws an exception on large double's
GeneralVery Useful articlememberMudkiSekhon28 Dec '05 - 23:13 
GeneralCode sample not correctsussRiCkY8214 Jul '05 - 0:12 
GeneralDateTime to Unix TimestampmemberEiswuerfelJr29 Apr '05 - 7:02 
GeneralRe: DateTime to Unix TimestampsussAnonymous29 Apr '05 - 22:22 
GeneralRe: DateTime to Unix TimestampmemberMikkel Rostock29 Apr '05 - 22:24 
GeneralExample is incorrectmemberDavid Palmer18 Apr '05 - 6:18 
GeneralAddSecondsmemberbsieber11 Apr '05 - 2:29 
GeneralRe: AddSecondsmemberMikkel Rostock11 Apr '05 - 2:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 11 Apr 2005
Article Copyright 2005 by Miros79
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid