vote up 9 vote down star
1

Is there any built-in support for that? And if not, is there any consensus about handling such dates?


Links to owncoded solutions, or fragments of it, are very welcome.

flag

Just curious - why? You're looking at at least two different calendars - Julian in 40-something BC and Gregorian 1580-something with different # days/mo, years, etc. Sounds like a nightmare. – n8wrl May 18 at 12:13
I want to rewrite some timeline software I started on when I was a kid (turbo pascal). It was just years back than, not full dates. – Peter May 18 at 12:16
Are even years accurate, without reference to the calendars? Isn't the time shift more than 1.0 years? – John Saunders May 18 at 12:18
Not sure i get that, you will always need a reference (a calendar used) when stating a date. – Peter May 18 at 12:21
1  
John, it is a complex function, with lots of parameters (like when was a calendar introduced on which place on the earth), but nevertheless, internally each date can be represented by only 1 datapoint : the ticks passed since a certain reference time. How to represent it to the outside world, that can be very complex ofcourse – Peter May 18 at 13:43
show 3 more comments

2 Answers

vote up 6 vote down check

There is no built in support for dates in this range so you will have to code your own.

Here is an example http://blog.cogworks.co.uk/2009/03/representing-large-ad-and-bc-dates-in-c.html

link|flag
I will code my own, Im afraid. just checkin here to see I'm not missing out on sth. readily present. – Peter May 18 at 12:19
tx for the code location too, but i'm afraid it doesn't suit my needs. Other links very welcome. – Peter May 18 at 12:59
vote up 4 vote down

If you're referring the handling of DateTime values < DateTime.MinValue, then I think the only "consensus" is to not use System.DateTime to try to represent them.

Any consensus would likely exist only within a community that does work with such dates. What is the area in which you are working? Astronomy?


Whatever the area of interest, there are likely to be others who have experienced this same problem. I'd do some research first, especially if your dates will ever need to interoperate with other software in this same area of interest. Even if you have to code your own, you can at least become aware of the issues that others have had in coding their own.

link|flag
No, not Astronomy. Rather history. – Peter May 18 at 12:15
Didn't suspect history; you didn't say "BCE". – John Saunders May 18 at 12:17
Or just use them relative to an epoch that you define externally. – Marc Gravell May 18 at 12:28
as far as the remark goes : true enough. – Peter May 18 at 12:45

Your Answer

Get an OpenID
or

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