brock
brock
Def a solid suggestion. There's another big one, too. Not couch potato, that's for movies. Sick Beard?
Yes, the `Is1904` flag would be important to expose as well. I have some reasons for wanting the raw OA date. I have some tools built around this library and...
As per my previous post, the main takeaway should have been is that "filtering" the raw OA date double through a `DateTime` or `TimeSpan` (along with the netcore inconsistencies I...
I am sorry, but "kind of works" is not really good enough. Sure, looking for "1899-12-31" would be ok, but any recent date at exactly midnight, while improbable, is still...
@andersnm >Technically they are both just numbers that require additional information through a number format to tell if its date-only, time-only or both. Are you sure about that? I feel...
@appel1 Something like that yeah. In my example, the OA dates are `44369, 0.609560185185185, 44369.6095601852`, a pure-date, a pure-time, and complete date-time. I made them using the cell formatters provided...
Oh, I misunderstood your original post about that. Good point. Another value in a `DateTime` companion enum? ```cs enum DateTimeType { None, // NotADateTime DateAndTime, DateOnly, TimeOnly } ```
Huh... I was unaware that you could do that. I guess I just learned something. I can accept that explanation. Thanks for looking into it and replying. I've made a...