Tagged Questions
The timespan tag has no wiki summary.
294
votes
34answers
27k 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...?
40
votes
9answers
8k views
.NET How to serialize a TimeSpan to XML
I am trying to serialize a .NET TimeSpan object to XML and it is not working. A quick google has suggested that while TimeSpan is serializable, the XmlCustomFormatter does not provide methods to ...
25
votes
1answer
7k views
Java equivalent to C#'s TimeSpan
Does Java have a data type that represents a period of time eg 34 seconds, 5 minutes etc.
I've seen a few implementations of a TimeSpan that cover a Time period like from the 10th of December to the ...
23
votes
5answers
744 views
Why does TimeSpan.FromSeconds(double) round to milliseconds?
TimeSpan.FromSeconds takes a double, and can represent values down to 100 nanoseconds, however this method inexplicably rounds the time to whole milliseconds.
Given that I've just spent half an hour ...
20
votes
3answers
2k views
C# 4.0: Can I use a TimeSpan as an optional parameter with a default value?
Both of these generate an error saying they must be a compile-time constant:
void Foo(TimeSpan span = TimeSpan.FromSeconds(2.0))
void Foo(TimeSpan span = new TimeSpan(2000))
First of all, can ...
20
votes
6answers
20k views
C# How do I convert ticks to minutes?
I have a ticks value of 28000000000 which should be 480 minutes but how can I be sure? How do I convert a ticks value to minutes?
Thanks
18
votes
10answers
680 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 ...
16
votes
10answers
9k views
Environment.TickCount vs DateTime.Now
Is it ever OK to use Environment.TickCount to calculate time spans?
int start = Environment.TickCount;
// Do stuff
int duration = Environment.TickCount - start;
Console.WriteLine("That took " + ...
14
votes
13answers
3k views
Difference in months
In C#/.NET TimeSpan has TotalDays, TotalMinutes, etc. but I can't figure out a formula for total months difference. Variable days per month and leap years keep throwing me off. How can I get ...
14
votes
10answers
30k views
How do I convert a TimeSpan to a formatted string?
Exact Duplicate
Timespan formatting
First question here:
I have two DateTime vars, beginTime and endTime. I have gotten the difference of them by doing the following:
TimeSpan dateDifference = ...
13
votes
4answers
5k views
Timespan formatting
How do you elegantly format a timespan to say example "1 hour 10 minutes" when you have declared it as :
TimeSpan t = new TimeSpan(0, 70, 0);
?
I am of course aware that you could do some simple ...
13
votes
3answers
4k views
What is the best way to represent a timespan in SQL Server CE?
Specifically speaking I only need hours:minutes but say I have a .NET TimeSpan object, how should I store that in a SQL(CE) database?
11
votes
2answers
271 views
TimeSpan FromMilliseconds strange implementation?
I recently encountered some wird behaviour in the .net timespan implementation.
TimeSpan test = TimeSpan.FromMilliseconds(0.5);
double ms = test.TotalMilliseconds; // Returns 0
The ...
10
votes
16answers
655 views
Personal pet projects [closed]
Most of us has a pet project. If so, how long have you been working on it?
10
votes
5answers
16k views
Parse string to TimeSpan
I have some strings of xxh:yym format where xx is hours and yy is minutes like "05h:30m". What is an elegant way to convert a string of this type to TimeSpan?
9
votes
4answers
2k views
Can you round a .NET TimeSpan object?
Can you round a .NET TimeSpan object?
I have a Timespan value of:
00:00:00.6193789
Is there a simple way to keep it a TimeSpan object but round it to something like
00:00:00.61 ?
8
votes
2answers
3k views
How to Convert ISO 8601 Duration to TimeSpan in VB.Net?
Is there a standard library method that converts a string that has duration in the standard ISO 8601 Duration (also used in XSD for its duration type) format into the .NET TimeSpan object?
For ...
7
votes
4answers
381 views
Formatting a negative TimeSpan
I'm doing some math with the Timespans in .Net, and occasionally the sum results in a negative Timespan. When I display the result I am having trouble formatting it to include the negative indicator.
...
6
votes
4answers
1k views
Format TimeSpan greater than 24 hour
Say I convert some second into the TimeSpan object like this.
Dim sec= 1254234568
Dim t As TimeSpan = TimeSpan.FromSeconds(sec)
How to format TimeSpan object into a format like the following:
...
6
votes
4answers
788 views
How to parse string with hours greater than 24 to TimeSpan?
How to parse string like 30:15 to TimeSpan in C#? 30:15 means 30 hours and 15 minutes.
string span = "30:15";
TimeSpan ts = TimeSpan.FromHours(
Convert.ToDouble(span.Split(':')[0])).
...
6
votes
3answers
2k views
Looping through the days of the week inside of C# TimeSpan Class
I'm trying to loop through EACH DAYof the WEEK between 2 time periods
DateTime start = new DateTime(2010, 1, 1);
DateTime end = new DateTime(2011, 12, 12);
I have managed to get the number of ...
6
votes
7answers
2k views
how to achieve timespan to string conversion?
I tried searching here, but it couldn't help me much ..
I want to convert time_span to string, I don't want to return the timespan in days .. but only HH:mm:ss. How to achieve that?
My sample code ...
6
votes
8answers
9k views
ActionScript 3.0 + Calculate timespan between two dates?
In ActionScript 3.0, is there an automatic way to calculate the number of days, hours, minutes and seconds between two specified dates?
Basicly, what I need is the ActionScript equivalent of the .NET ...
5
votes
2answers
289 views
Do we have a TimeSpan sort of class in Java
I was just wondering if there is a need of TimeSpan in java.util so that I can define how much hours,minutes and seconds are there in between these two times.
From this TimeSpan we can have a time ...
5
votes
2answers
314 views
Silverlight media player position problem
I'm facing a strange issue. My application plays movies from specific positions, so even a position mentioned in milliseconds matters for me. I'm assigning a position to a media element but it's ...
5
votes
5answers
447 views
Calculating past datetime in C#
I am working on an algorithm in C# to calculate a past DateTime based on an input string with the following characteristics:
The string contains an integer followed by either 'D', 'M' or 'Y', such as ...
5
votes
7answers
1k views
A Real Timespan Object With .Years & .Months
To my disappointment I noticed that there is no real timespan object, if you get a timespan, and do a .years or .months you'll get nothing, you'll only get .days and lower because a timeSpan object ...
5
votes
8answers
3k views
TimeSpan to friendly string library (C#)
Duplicate: This is one of the earliest question on StackOverflow posted by Jeff.
http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time
Does anyone know of a good library (or code ...
5
votes
6answers
517 views
What is the most intuitive, usable way of entering a time of day or a duration?
I'm building a line-of-business application in Silverlight and need to get the user to edit two .NET TimeSpan values. One is a time of day (relative to midnight) and the other is a duration. Currently ...
4
votes
8answers
155 views
4
votes
1answer
55 views
Timespan differences between XP and Win7 in .Net 4.0
I have create a little engineering app for some network debugging. It takes a list of IP addresses and pings them, with user set timeout and rate. It logs the average round-trip time and every time ...
4
votes
2answers
157 views
C# TimeSpan.FromTicks() inaccurate?
I have been using C# for some time now to make a small game, and while testing said game on a different PC I came across some strange elapsed time issues.
I have everything set up in this game to be ...
4
votes
4answers
213 views
Query for maximum number of concurrent time spans
I have a SQL Server table with two datetime fields (CnxStartdatetime, CnxEnddatetime). Each row represents a transmission of information. I am trying to find the maximum number of concurrent ...
4
votes
2answers
266 views
Date Range in days…C#
I have a query that is calling an Oracle DB from C#. I want to write the query to get data that is, at most, 5 years old.
I currently have a hard coded value for public const int ...
4
votes
3answers
573 views
how to perform division in timespan
i have got a value in time span lets say: tsp1= 2 hour 5 minuts
i have a another time span variable which contains value like: tsp2= 0 hours , 2 minuts
please tell me how can i divide tsp1 by tsp2 so ...
4
votes
3answers
320 views
Why has this particular TimeSpan format string stopped working in .NET 4?
Consider this code (prestuffed with an example):
DateTime dt1 = DateTime.Parse("7/30/2010 9:33:29.1234567 AM");
DateTime dt2 = DateTime.Parse("6/30/2010 9:33:00.7654321 AM");
TimeSpan ts = dt1 - ...
4
votes
6answers
771 views
Calculate the difference between two dates and get the value in years? [closed]
Possible Duplicate:
How do I calculate someone’s age in C#?
I want to calculate basically the age of employees - So we have DOB for each employee, So on
the C# Side I want to do ...
4
votes
2answers
119 views
Finding 'free' times in MySQL
I've got a table as follows:
mysql> DESCRIBE student_lectures;
+------------------+----------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra ...
4
votes
5answers
4k views
Convert .NET Ticks to SQL Server DateTime
I am saving in my DB a TimeSpan (from .NET) value as BIGINT in SQL Server (saving the Ticks property). I want to know how to convert this BIGINT value to a DATETIME value in SQL Server (not in .NET). ...
4
votes
7answers
928 views
Clean way to reduce many TimeSpans into fewer, average TimeSpans?
I have a C# Queue<TimeSpan> containing 500 elements.
I need to reduce those into 50 elements by taking groups of 10 TimeSpans and selecting their average.
Is there a clean way to do this? I'm ...
4
votes
8answers
713 views
Handling and storing elapsed time
I'm having problems deciding on what is the best way is to handle and store time measurements.
I have an app that has a textbox that allows the users to input time in either hh:mm:ss or mm:ss format. ...
3
votes
3answers
56 views
timespan difference value always positive
i want to convert the timespan diff value always positive
My code is here :
TimeSpan lateaftertime = new TimeSpan();
lateaftertime = lateafter - Convert.ToDateTime(intime);
i want to get the ...
3
votes
4answers
124 views
C# get the number of hours between now and 8am the next day
I can get the difference between two dates, but I need to calculate how many hours are between now and 8 am the next day...
Anyone have an example?
Thanks!
3
votes
1answer
151 views
Why those different string formats on TimeSpan on XAML?
I'm going crazy. Can someone explain me why these string formats formatting the same thing are so different?
<DataGridTextColumn Header="Max Time" IsReadOnly="True" Binding="{Binding MaxTime, ...
3
votes
3answers
138 views
Work around for TimeSpan parsing 24:00
I have a small issue with the TimeSpan class where it can parse 23:59 but not 24:00.
Of course the client wants to enter 24:00 to indicate the end of the day rather than 23:59 or 00:00 as 00:00 ...
3
votes
3answers
395 views
Remove leading zeros from time to show elapsed time
I need to display simplest version of elapsed time span. Is there any ready thing to do that?
Samples:
HH:mm:ss
10:43:27 > 10h43m27s
00:04:12 > 4m12s
00:00:07 > 7s
I think I need a ...
3
votes
3answers
448 views
Generic TimeSpan binding in Asp.NET MVC 2
I have an input form that is bound to a model. The model has a TimeSpan property, but it only gets the value correctly if I enter the time as hh:mm or hh:mm:ss. What I want is for it to capture the ...
3
votes
2answers
333 views
is there a bug in TimeSpan
TimeSpan span = TimeSpan.Zero;
span.Add(TimeSpan.FromMinutes(5));
Console.WriteLine(span.TotalSeconds); -----> will out put "0"
however
TimeSpan span = ...
3
votes
6answers
1k views
Use String.Format on a TimeSpan to output only full seconds
I want to display the elapsed time between two dates in a string.
Let's say I have the following code:
DateTime date1 = DateTime.Now();
System.Threading.Thread.Sleep(2500);
DateTime date2 = ...
3
votes
2answers
288 views
Arithmetic with PowerShell Timespans
PowerShell Timespans are great for quickly displaying durations, as in:
$starttime = $(get-date)
{ do some processing here }
write-host "Duration: $((new-timespan $starttime $(get-date)).tostring())"
...