Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
7answers
1k views

Can Stopwatch be used in production code?

I need an accurate timer, and DateTime.Now seems not accurate enough. From the descriptions I read, System.Diagnostics.Stopwatch seems to be exactly what I want. But I have a phobia. I'm nervous ...
12
votes
3answers
108 views

Is .NET Stopwatch standby/sleep/hibernate aware?

Does System.Diagnostics.Stopwatch count time during computer stand by?
12
votes
5answers
869 views

System.Diagnostics.Stopwatch returns negative numbers in Elapsed… properties

Is it normal behaviour that Stopwatch can return negative values? Code sample below can be used to reproduce it. while (true) { Stopwatch sw = new Stopwatch(); ...
10
votes
1answer
877 views

Are StopWatch.ElapsedTicks and StopWatch.Elapsed.Ticks always the same?

What does ElapsedTicks and Elapsed.Ticks in the StopWatch class mean? When could the meaning be different than intended?
8
votes
4answers
1k views

Performance of .Net function calling (C# F#) VS C++

Since F# 2.0 has become a part of VS2010 I take an interest in F#. I wondered what's the point of using it. I'd read a bit and I made a benchmark to measure functions calling. I have used Ackermann's ...
8
votes
3answers
522 views

Is Stopwatch really broken?

At MSDN page for Stopwatch class I discovered link to interesting article which makes following statement about Stopwatch: However there are some serious issues: This can be unreliable on ...
7
votes
4answers
1k views

Can the .NET Stopwatch class be THIS terrible?

I'm making an app that needs some pretty tight timing and the Stopwatch class is the perfect solution. However, I noticed sometimes, when running on a small panel PC, the Stopwatch values veer way ...
6
votes
3answers
682 views

What, if any, is the resource penalty for using System.Diagnostics.Stopwatch?

For example foo() //Some operation bound by an external resource. db,I/O, whatever. vs. var watch = new Stopwatch(); watch.Start(); foo() var time = watch.ElapsedMilliseconds watch.Stop();
5
votes
1answer
827 views

C# Stopwatch shows incorrect time

I have seen other user posts which show Stopwatch measuring time spent in "Thread.Sleep(5000)" to be around 5000ms. But my program produces the following results for (int i = 0; i < 20; ++i) ...
5
votes
4answers
479 views

Why is my Stopwatch.Frequency so low?

Debug.WriteLine("Timer is high-resolution: {0}", Stopwatch.IsHighResolution); Debug.WriteLine("Timer frequency: {0}", Stopwatch.Frequency); Result: Timer is high-resolution: True Timer ...
5
votes
8answers
2k views

How accurate is Thread.Sleep(TimeSpan)?

I've come across a unit test that is failing intermittently because the time elapsed isn't what I expect it to be. An example of what this test looks like is: Stopwatch stopwatch = new Stopwatch(); ...
5
votes
8answers
4k views

stopwatch accuracy

How accurate is System.Diagnostics.Stopwatch? I am trying to do some metrics for different code paths and I need it to be exact. Should I be using stopwatch or is there another solution that is more ...
4
votes
1answer
54 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
155 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
2answers
239 views

Precisely measure execution time of code in thread (C#)

I'm trying to measure the execution time of some bits of code as accurately as possible on a number of threads, taking context switching and thread downtime into account. The application is ...
4
votes
1answer
67 views

Differences in Elapsed Ticks property of Stopwatch

ElapsedTicks & Elapsed.Ticks are properties of Stopwatch, which I think should be same. And in case they are same, why they should give different outputs ? Code : Stopwatch spwt = ...
4
votes
3answers
88 views

Why is does my stopwatch keep reseting after 1 second

So I have the following code block: var sw = new Stopwatch(); sw.Start(); while (sw.Elapsed.Seconds<10) { System.Threading.Thread.Sleep(50); ...
4
votes
5answers
809 views

.NET System.Diagnostics.Stopwatch issue (returns values too low)

On my computer the Stopwatch is returning values way too low. For example, 200 ms when I specified Thread.Sleep(1000). The program is supposed to wait 1 second. I also tested with ...
4
votes
5answers
665 views

C# 2.0 Execution Time Timer

I would like to be able to calculate the amount of time a number of functions take to execute. I was thinking about using some type of stopwatch class. I can call start/stop before and after each ...
3
votes
3answers
188 views

Stopwatch Java API

Is there something out there that would allow me to create static object in my class or extend my class and give me functions to start, stop time configure statistics collection with properties file ...
3
votes
1answer
338 views

Javascript Countdown Timer

I need a count down timer that can display second:miliseconds format, I found one that I figured I could modify it to show this like 4:92 but it doesn't want to work for me for some reason. It works ...
3
votes
3answers
1k views

Raise event in high resolution interval/timer

I want to use the highest possible resolution timer using c#. For example, I want to raise an event every 11 ticks(ive heard that tick is the highest possible counter in pc). I tried timer and found ...
3
votes
2answers
174 views

Write stopwatch application in Blackberry, how to make it run more accurate

My app has a feature like the BlackBerry Stopwatch application: A label displaying the time, updated every 100 milliseconds. I've used a separate thread for a Timer which schedules a TimerTask to ...
2
votes
2answers
42 views

Synchronizing Forms.Timer and Diagnostics.Stopwatch

I have a function (say foo())that will be called from time to time with a variable interval. When it is called, it checks the time and takes an action accordingly. I have done this in the following ...
2
votes
1answer
63 views

Android milliseconds

So I'm trying to write a stopwatch app that displays time in milliseconds, but for some reason it won't work. Basically I have just a togglebutton that, after being pressed, starts printing the ...
2
votes
2answers
116 views

Is there a stopwatch in java

Is there a stopwatch in java because on google I only find codes of stopwatches and they don't work, they give me always 0 miliseconds. This code that I found doesn't work but I don't see why because ...
2
votes
5answers
300 views

.NET Stopwatch - Performance Penalty [closed]

Possible Duplicates: Is DateTime.Now the best way to measure a function's performance? Stopwatch vs. using System.DateTime.Now for timing events I have a code which needs to run as ...
2
votes
1answer
374 views

How to implment laps in Stop Watch iphone app

I am building one application which has stop watch as its accessory function. I am trying to do something very similar to iOS stop watch. I got stop, reset functionality working but I could not get ...
2
votes
4answers
741 views

How show minutes and seconds with Stopwatch()

I need to show also the minutes, actually I use this code for show the seconds, but also need the minutes TimeSpan ts = stopwatch.Elapsed; Console.WriteLine("File Generated: " + ...
2
votes
2answers
214 views

Stopwatch class that shows min, max, average, … times?

I am looking for a java class that simulates a StopWatch (like Spring's StopWatch or Commons' StopWatch) but that would give minimum, maximum and average times. Preferable also average over last n ...
2
votes
7answers
310 views

Java high precision stopwatch

I have this problem, and I can't get any idea how to solve it. I have to measure the time needed to perform certain function. Okay, stopwatch function that measure time in milliseconds wasn't good ...
2
votes
3answers
258 views

Capturing the executing time between 2 statements Java?

I want to capture the time take to go from statement A to Statement B in a Java class. In between these statements there are many web service calls made. I wanted to know if there is some stop watch ...
2
votes
6answers
242 views

How would I go about implementing a stopwatch with different speeds?

Ideally I would like to have something similar to the Stopwatch class but with an extra property called Speed which would determine how quickly the timer changes minutes. I am not quite sure how I ...
2
votes
3answers
203 views

C# Confusing Results from Performance Test

I am currently working on an image processing application. The application captures images from a webcam and then does some processing on it. The app needs to be real time responsive (ideally < ...
2
votes
1answer
528 views

How do i get from Stopwatch.GetTimestamp() to a DateTime?

Duplicate of: How to get timestamp of tick precision in .NET / C#? How do i get from Stopwatch.GetTimestamp() to a DateTime Assume Stopwatch.IsHighResolution is true
1
vote
2answers
46 views

Does Stopwatch.Gettimestamp ever roll over? Or roll back?

In using Stopwatch.GetTimestamp() we find that if you record the return value and then continue calling it and comparing to the previous return value, it will eventually but unpredictably return a ...
1
vote
2answers
52 views

Calculate typing speed of email addresses

I need to calculate the typing speed of the user, the typing speed is calculated by inputting his email address. The user will compete with other users who typed their email address. How I am doing ...
1
vote
4answers
66 views

Difference between ElapsedTicks, ElapsedMilliseconds, Elapsed.Milliseconds and Elapsed.TotalMilliseconds? (C#)

I'm totally confused between these 4. What is the difference between ElapsedMilliseconds (long), ElapsedTicks (long), Elapsed.TotalMilliseconds (double) and Elapsed.Milliseconds (int)? I have a ...
1
vote
1answer
95 views

Won't let me use the class Stopwatch. in visual studio

I was trying to get farseer physics engine to work. Everything compiles fine except for one error that wont go away. Error 1 The type or namespace name 'Stopwatch' could not be found (are you ...
1
vote
1answer
101 views

Windows Phone 7 update a textblock permanently

I am trying to program some kind of stopwatch for Windows Phone 7. To measure the elapsed time I use the Stopwatch class. To print the output I use a textblock. But I would like the textblock to show ...
1
vote
5answers
152 views

How to increment in time?

I am creating a stopwatch type application. I've used a label to display time. When application starts, the label is initialized to '00:00:00' and I want to increment its time by every 1 second. I am ...
1
vote
2answers
98 views

Javascript Stopwatch not starting at zero

I've got a basic stopwatch here, but the problem is I think it begins counting when the page loads as opposed to when the start button is clicked. Likewise, when you reset and start again the same ...
1
vote
4answers
74 views

Problem with assigning variable C#

When I return the string timeTaken, it is null, and it says this on the IDE to, although it has been defined in the main method (TimeSpan timeTaken = timer.Elapsed;) class Program { public ...
1
vote
1answer
92 views

javascript to replace button text with images…trigger button with external event

I found this stopwatch javascript, complete with "Start", "Stop" and "Reset" buttons. The functionality of this script is great, but I would like to spruce it up a bit. I've managed to style the ...
1
vote
1answer
67 views

Accurately timing user interaction in a WPF window

I need to time the interval between two GUI events in a WPF window - specifically, the time between a Button_Click event and a Canvas_MouseLeftButtonDown event. I am using calls to a ...
1
vote
2answers
171 views

Is Stopwatch.ElapsedTicks threadsafe?

If I have a shared System.Diagnostics.Stopwatch instance, can multiple threads call shared.ElapsedTicks in a safe manner and get accurate results? Is there any difference in terms of ...
1
vote
1answer
371 views

Time Elapsed/StopWatch

I want to create an ASP.NET WinForms application that tracks time on task. I need to be able to write the form so that I can add the task to the database, open it in a new tab, and be able to start, ...
1
vote
3answers
175 views

What are timer ticks, the unit used by Stopwatch.ElapsedTicks

I used to think that Stopwatch.ElapsedTicks was equal to Stopwatch.Elapsed.Ticks. But it isn't. While the latter is a number of 100 nanoseconds periods, the former use a misterious unity called ...
1
vote
2answers
159 views

which one is better for filling DataGridView lambda or linq?

i filled 2 dataGridView with two kinds of method: 1) Lambda Expression: protected void FillLamdaMethod() { Stopwatch sw = Stopwatch.StartNew(); using ...
1
vote
5answers
490 views

How do I measure time in C?

I want to find out for how long (approximately) some block of code executes. Something like this: startStopwatch(); // do some calculations stopStopwatch(); printf("%lf", timeMesuredInSeconds); ...

1 2