78
votes
13answers
4k views
Is DateTime.Now the best way to measure a function’s performance?
I need to find a bottleneck and need to accurately as possible measure time.
Is the following Code Snippet the best way to measure the performance?
DateTime startTime = DateTime.Now;
// Some …
73
votes
32answers
6k views
How do I calculate relative time?
Given a specific DateTime value, how do I display relative time, like
2 hours ago
3 days ago
a month ago
etc, etc...?
51
votes
23answers
12k views
How do I calculate someone’s age in C#?
Given a DateTime representing their birthday, how do I calculate someone's age?
18
votes
6answers
838 views
What’s a good way to overwrite DateTime.Now during testing?
I've got some (C#) code that relies on today's date to correctly calculate things in the future. If I use today's date in the testing, I have to repeat the calculation in the test, which doesn't feel …
15
votes
5answers
4k views
In C#, given a DateTime object, how do I get a ISO8601 date in string format?
Given:
DateTime.UtcNow
How do I get a string which represents the same value in an ISO8601 compliant format?
Note that ISO8601 defines a number of similar formats (wikipedia). The specific …
14
votes
8answers
2k views
datetime vs timestamp?
What would you recommend using between a datetime and a timestamp field, and why? (using mysql). I'm working with php on the server side.
14
votes
7answers
672 views
Natural language date/time parser for .NET?
Does anyone know of a .NET date/time parser similar to Chronic for Ruby (handles stuff like "tomorrow" or "3pm next thursday")?
Note: I do write Ruby (which is how I know about Chronic) but this …
11
votes
8answers
2k views
DateTime “null” value
I've been searching a lot but couldn't find a solution. How do you deal with a DateTime that should be able to contain an uninitialized value (equivalent to null)? I have a class which might have a …
10
votes
3answers
296 views
How do I improve the performance of code using DateTime.ToString?
In my binary to text decoding application (.NET 2.0) I found that the line:
logEntryTime.ToString("dd.MM.yy HH:mm:ss:fff")
takes 33% of total processing time. Does anyone have any ideas on how to …
9
votes
9answers
340 views
Is TimeSpan unnecessary?
EDIT 2009-Nov-04
OK, so it's been a little while since I first posted this question. It seems to me that many of the initial responders failed to really get what I was saying--a common response was …
9
votes
3answers
230 views
Why does an hour get added on to java.util.Date for dates before Nov 1 1971?
The following code appears to demonstrate a bug in java.util.Date whereby an hour gets added on if the local clock is set to GMT with DST adjustment on and the time is before Nov 1 1971. My first …
9
votes
3answers
146 views
Localizing Date Ranges
Does anyone know how to localize date ranges using C#?
In particular, I want to generate "smart" date ranges, so that redundant information is eliminated.
Here are some examples in US English
…
9
votes
6answers
286 views
Flattening intersecting timespans
I have lots of data with start and stop times for a given ID and I need to flatten all intersecting and adjacent timespans into one combined timespan. The sample data posted below is all for the same …
9
votes
2answers
305 views
What is the (best) way to handle dates before Christ in C#/.NET?
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.
9
votes
6answers
1k views
Convert datetime in to date
How do I convert a datetime field in Grails to just date, with out capturing the time? I need to do this for comparison with system date.
class Trip
{
String name
String city
Date …
