-1
votes
2answers
70 views

Measuring code execution time [closed]

I want to know how much time takes a procedure/function/order to finish, to testing purposses. This is what I did but my method is wrong 'cause if the difference of seconds is 0 can't return the ...
5
votes
2answers
76 views

Get breaks from a list of times

I have a list of work items. Each work item has a start and an end time. So, basically it looks like this: List<Work> works = new List<Work>(); works.Add(new Work( new DateTime(2013, ...
-4
votes
3answers
62 views

How do I convert a TimeSpan value to a double ? c#

How do I convert a TimeSpan value to a double in c# ? I mean I have this -08:15:00 and I want a double -08.15
0
votes
1answer
43 views

I would like to know how to check the elapsed time with tcp client server using serialization in C#

I need to know how to check properly the elapsed time of sending messages between two clients and 1 server. I tried to put in my object that I transfer the the exact time in milliseconds with the ...
0
votes
1answer
57 views

How do I calculate the next run time for my event provider?

I am trying to calculate a start time for an event provider. I have 3 variables: DateTime eventStartTime DateTime currentTime TimeSpan timeBetweenEvents eventStartTime is the desired start time ...
0
votes
5answers
107 views

Get date string from count of days since Epoch C# [duplicate]

I have an integer 15791 which represents count of days since epoch and equals 27.03.2013, how can do this convert in C#? public void method1() { ... int days_since_epoch = 15791; // how convert ...
0
votes
2answers
128 views

Show Remaining time TimeSpan

I'm getting problems trying to show the remainig time of a operation The problem is only with the remaining timer, I get a negative values... This is a example of a operation of 10000 ms (10 secs): ...
-2
votes
4answers
101 views

Calculating time difference and keep on adding the difference to a label

I am working on a program that calculates the difference between two given times. The difference between two times is calculated with button1 event handler and is displayed in label as shown in the ...
0
votes
2answers
192 views

Calculate time difference using TimeSpan

I am trying to calculate the time difference of two given times slots but the answers does not seem to be correct what am I doing wrong? My code: For some reason the value given amFinish is changed ...
1
vote
5answers
88 views

Calculating with TimeSpan and DateTime

Depending on the current time I need to calculate if a shop is actual open or not. Up to now the opening times are persisted as TimeSpan: public TimeSpan OpeningTime { get; set; } public TimeSpan ...
6
votes
1answer
154 views

Why does timespan totalmilliseconds have the same digits in the integer and decimal parts?

When calculating the millisecond difference between two DateTime objects I always seem to get a number returned where the decimal part of the number is the same as the integer component of the number. ...
0
votes
2answers
50 views

Get dayspan according to dates, not duration?

I am trying to get the number of days between two datetimes, but not according to the exact timespan, rather according to the "day date" difference between date a and date b. No hours taken in ...
0
votes
1answer
125 views

How subtract 2 DateTimes to get DateTime result?

I use jquery Count up timer and it works in 1 line: $(document).ready(function () { $('#count_up').countUp({ 'lang': 'en', 'format': 'day', 'sinceDate': '22/07/2008-00::00' }); }); So, this shows ...
0
votes
1answer
71 views

Correct logic but incorrect code for calculating dates [duplicate]

I'm writing a program to calculate timespans and cant seem to get the math correct. What I'm basically trying to do is calculate if a particular date range is between an arrival date and an end date. ...
2
votes
3answers
268 views

Random DateTime between range - not unified output

I implemented the below RandomDate, but I always keep getting values closed to "From" date, i probably miss something here.... public static DateTime GetRandomDate(DateTime from, DateTime to) { ...
0
votes
3answers
1k views

Work with a time span in Javascript

Using Date.js already, but can also use another library if necessary. Not sure what is the best way to work with time deltas. Specifically, I want to display the time that has elapsed between now and ...
1
vote
2answers
571 views

Calculate the number of Calendar Months between two dates

I am developing a interest calculator in C#. I need to know the number of days between 2 dates So, I am calculating something like this : DateTime dt1 = ...
1
vote
2answers
212 views

Calculating total night time from timespan

Suppose night time is set from 20.30h till 6.15h(AM). These 2 parameters are user-scoped variables. Suppose you have an arrival date and a departure date which can span from a few minutes to more than ...
0
votes
4answers
649 views

How to convert a double value to a DateTime in c#?

I have the value 40880.051388 and am storing it as a double, if I open Excel and paste in a cell and apply the following custom format "m/d/yyyy h:mm" to that cell, I get "12/3/2011 1:14" How can I ...
1
vote
2answers
294 views

System.Nullable<System.TimeSpan>' does not contain a definition for 'TotalMinutes'

Is there an elegant way around this error rather than checking .HasValue in the if() then adding the Value such as DateTimeUtcNow.Value? // Compare nullable date time entity.End with utcnow but only ...
0
votes
1answer
49 views

Timespan to int reservation Tool

HI im trying to create a simple reservation form in visual studio that takes an arrival date and departure date, gets the duration and works out the cost of stay by multipling duration by £115 heres ...
0
votes
0answers
64 views

Convert to DataType DateTime but only want the time

How can i convert my column with timespan dataType (Eg: 04:04:45 ) to DateTime in HH:mm:ss format (Eg: 04:04:45)? Currently I can convert the column to datetime (Eg: 10/2/2012 4:04:45 AM) but I only ...
-1
votes
3answers
5k views

Getting time span between two times in C#?

i have two textboxes. One for a clock in time and one for clock out. The times will be put in this format: Hours:Minuets Lets say i have clock in 7:00 AM and clock out 2:00 PM If i subtract those, ...
0
votes
2answers
243 views

Given a list of dates, how do I get the nearest date in the past to today and the nearest date in the future to today in VB.NET

I am currently using the function below to return the nearest date from a list of dates to a date(today). My problem is, the function returns the closest date regardless of it being the past or the ...
2
votes
6answers
97 views

Is there a structure that handles Timeblocks?

I want to handle Timeblocks, that means a set of two DateTimes which represent for example the presence of employees. Is there already any structure that i can use to search for a block before or ...
-1
votes
5answers
2k views

Datetime.now as TimeSpan value?

I need the current Datetime minus myDate1 in seconds. DateTime myDate1 = new DateTime(1970, 1, 9, 0, 0, 00); DateTime myDate2 = DateTime.Now; TimeSpan myDateResult = new TimeSpan(); myDateResult = ...
0
votes
3answers
124 views

Will the TimeSpan which i set into DateTime.TimeOfDay change according to DateTime?

I have variable dtTime of type DateTime and tmSpan of type TimeSpan. And i do these : dtTime=new DateTime(1,1,1)+tmSpan; After this if i change day time on dtTime this changes will be applied to ...
1
vote
3answers
192 views

c# - Substracting two times returns negative value

I'm having problems when I'm trying to substract hr2 with hr1 in a specific situation, for example, when hr1 = 13:00 and hr2 = 15:00, ok, the result is 02:00. But when the values are: hr1 = 22:00 and ...
1
vote
1answer
141 views

How to calculate relative time irrespective of the client datetime settings

This is a very famous question that has already been asked which I am currently implementing as well. My objective is to calculate the relative time which displays 5 minutes ago, 5 hours ago etc., I ...
1
vote
4answers
272 views

TimeSpan into Microseconds?

hello again my question if it is possible to print microsencods using TimesSpan in C#. i have the next example: DateTime startTime = DateTime.Now; ..../some code DateTime endTime = DateTime.Now; ...
0
votes
1answer
248 views

How would you find that a date is how much percent more or less than another date?

Consider you have 2 dates: var left = new DateTime(2012,10,05,13,30,00); var right = new DateTime(2012,10,05,13,31,30); The fact is: right is 1,5 minutes more than left. If we talk ...
1
vote
3answers
518 views

TimeSpan.TotalMinutes without seconds

I am using the code var minutesPassed = (DateTime.UtcNow - conversionsList.Last().DateStamp).TotalMinutes; to calculate how much minutes passed between two dates. The result which I get looks like ...
0
votes
4answers
488 views

Looping start to end timespans overnight

hope all is swell! I was hoping I had cracked this problem but it looks like we have ran into some errors this morning. This is an asp.net web application, and this section is in c#. We are ...
3
votes
4answers
222 views

Given a start and end date… find all dates within range in C#

Given DateTime start = startsomething and DateTime end = endSomething Is there a standard way to return all Dates within start and end such that the return is a list of Dates like ... '1/1/2012 ...
1
vote
4answers
2k views

Creating countdown to date C#

I want to make a Windows Form Application which only shows a timer as: xx days xx hours xx minutes xx seconds No option for setting the timer or anything, i want to do that in the code However, the ...
1
vote
2answers
329 views

c# does 1.09:00:00 timespan mean 9am tomorrow?

I have a routine which is suppose to run at 9am everyday.... protected override void OnStart(string[] args) { log.Info("Info - Service Start"); string timeToRunStr = "09:00"; var ...
0
votes
2answers
1k views

How to use timespan in PHP?

I've got 2 fields to populate: how many times the page is called per 15 minutes and per hour. Following fields are DateTime in MySql: $lastAccess15m=$row['lastAccess15m']; ...
0
votes
3answers
1k views

Subtracting two dates

I have two calendars and each return a DateTime from calendar.SelectedDate. How do I go about subtracting the two selected dates from each other, giving me the amount of days between the two ...
0
votes
2answers
355 views

Most Efficient Way To Represent Time periods

I have a need to take a time period, e.g. a week and break it down into days and then further down into either hours, 30 minutes, 15 minutes etc. Then I want to be able to assign (possibly multiple) ...
1
vote
2answers
1k views

Converting a float into a timespan

Is there a simple way to take a float value representing fractional hours and convert them into a TimeSpan object and visa versa? For example: float oneAndAHalfHours = 1.5f; float twoHours = 2f; ...
1
vote
1answer
542 views

TSQL, How to find timespan in milliseconds between two times?

Using TSQL how do you find the difference between two times, in milliseconds? declare @start datetime = '2012-04-10 14:59:12.863', @end datetime = '2012-04-10 14:59:13.800' select @start, @end, ...
0
votes
4answers
369 views

Displaying total duration using Timespan

I need help to display something like this. If you recognize, this our membership duration of Stack Overflow account. member for 2 years, 3 months I need a slight modification in the same. My ...
6
votes
3answers
284 views

Is this the best way to represent decades with TimeSpan?

I'm making a graph that cover "1930-1940", "1940-1950", "1950-1960", "1960-1970", ... I want to represent this with a DateTime and a Timespan, but I'm not really sure how to make the TimeSpan, and I ...
0
votes
3answers
476 views

Create an absolute or relative time period class in C#

I want to create some class that can calculate absolute or relative time period. Meaning: the constructor will get either time period and units ( 3 weeks ) or two DateTime start and finish time. I ...
1
vote
4answers
991 views

What is Best way to calculate time span

In my c# program, my requirement is to calculate a timespan for business logic execution that is inside a foreach loop I have to store time span. I am using following code for (int i = 0; i < ...
0
votes
2answers
440 views

Check to see if Day of Month exists between two DateTime, regardless of year

tl;dr; How would you take StartDate-DateTime: Dec 10th 2011, EndDate-DateTime Jan 15th 2012, and determine whether or not Dec 1, Dec 9,Dec 17,Dec 25, Jan 1, and Jan 9 fit into that TimeSpan, Year ...
0
votes
1answer
214 views

Calculate StartDate & Time

I want to do 2 things with date & time calculation : First : I have a LastSave (dateTime Format). I have two controls (NumericUpDown / Format Decimal), one for Hours, the other for Minutes. ...
0
votes
1answer
103 views

Express the concept of “from” date “to” date in rails

I have a situation where the user can do something (like a post) only into a given timespan, like from <10 december 2010> to <5 march 2011>. How do you suggest to express it in a rails ...
0
votes
4answers
453 views

Getting a particular date using current date as reference

I want to get two particular dates by using current date, let me explain more. For example if today is 10/27/2011 then I would like to have 7/01/2011 and 9/30/2011. Note that its a three month period ...
5
votes
1answer
305 views

Datetime Granularity between 32bit and 64bit Windows

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 ...

1 2 3