Is there a function in .net that will take a number such as 134,501 and convert it to time? That time would be 1:45:01 pm. I was hoping i didn't have to reinvent the wheel for this.

link|improve this question

76% accept rate
Is the number a string such as "134,501", or an integer? – Ani Jan 10 '11 at 17:01
well I am retrieving this number from an as400 database and .net views this number as a double actually because i would get "can not convert double to datetime" error when trying to convert it before i knew what data type it was. – Eric Jan 10 '11 at 17:03
1  
What is 134.501 ? Minutes / seconds ? – Felice Pollano Jan 10 '11 at 17:11
@Felice that would be 1:45:01 pm as stated above. :) – Eric Jan 10 '11 at 17:17
@Felice: It wasn't obvious to me either. It's HHmmss format, so 13 hours, 45 minutes, 01 seconds. – Greg Jan 10 '11 at 18:06
feedback

1 Answer

up vote 12 down vote accepted

Assuming you're using today's date:

int timeNumber = 134501;
DateTime time = DateTime.ParseExact(timeNumber.ToString().PadLeft(6, '0'), "HHmmss", null);
link|improve this answer
Thanks! Perfect – Eric Jan 10 '11 at 17:05
2  
+1@AlexWalker but you should add PadLeft(6, '0') to the ToString(). Otherwise it will fail for AM values – Conrad Frix Jan 10 '11 at 17:08
@Conrad You are correct! Thank you very much for that bit of information. – Eric Jan 10 '11 at 17:15
feedback

Your Answer

 
or
required, but never shown

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