Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6706749
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T07:33:26+00:00 2026-05-26T07:33:26+00:00

I have been using C# for some time now to make a small game,

  • 0

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 updated based on time passed since the last game loop, as one should in most cases, but on the second PC everything was way off.

I found out the issue was to do with creating a TimeSpan using the FromTicks() method. I made a little test using the following code:

class Program
{
    static void Main(string[] args)
    {
        System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
        sw.Start();
        System.Threading.Thread.Sleep(TimeSpan.FromSeconds(1));
        sw.Stop();
        TimeSpan t = TimeSpan.FromTicks(sw.ElapsedTicks);
        Console.WriteLine(t.ToString());
        Console.WriteLine(sw.Elapsed.ToString());
        Console.ReadKey();
    }
}

On my main PC, I ran this program and got the following:

    00:00:00.3528353
    00:00:00.9856987

Something I didn’t expect at all. I thought the second result was quite inaccurate, but the first was well off.

Then I ran the same program on the other PC and got this:

    00:03:20.6866734
    00:00:00.998287

I was quite astounded.

My question here is not how I can fix this issue, I have already decided to use the second method because it’s accurate enough… rather, I ask for enlightenment.

How can this be so? Why is the first result so inaccurate? Why does this vary hugely on a different machine?

I checked on msdn in case I was using the method wrong, but the examples there show that my results should be impossible…

Note:
I think the CMOS battery is dying/dead, is that a factor?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T07:33:26+00:00Added an answer on May 26, 2026 at 7:33 am

    Summary: The Frequency of the stopwatch can be different on different hardware which means the ticks (whose interval is based on frequency) are of a different size (and of a different size to the tick in the timespan and datetime objects).

    In short, use the Elapsed property directly instead:

        TimeSpan t = sw.Elapsed;
    

    …or use the Ticks property of Elapsed, if you need to perform calculations:

        TimeSpan t = TimeSpan.FromTicks(2*sw.Elapsed.Ticks);
    

    Long version with references:

    http://msdn.microsoft.com/en-us/library/system.diagnostics.stopwatch.elapsedticks.aspx is the msdn page for your elapsed ticks. Of note is:

    This property represents the number of elapsed ticks in the underlying
    timer mechanism. A tick is the smallest unit of time that the
    Stopwatch timer can measure. Use the Frequency field to convert the
    ElapsedTicks value into a number of seconds.

    And from the page on the Frequency field:

    The timer frequency indicates the timer precision and resolution. For
    example, a timer frequency of 2 million ticks per second equals a
    timer resolution of 500 nanoseconds per tick. In other words, because
    one second equals 1 billion nanoseconds, a timer frequency of 2
    million ticks per second is equivalent to 2 million ticks per 1
    billion nanoseconds, which can be further simplified to 1 tick per 500
    nanoseconds.

    The Frequency value depends on the resolution of the underlying timing
    mechanism. If the installed hardware and operating system support a
    high-resolution performance counter, then the Frequency value reflects
    the frequency of that counter. Otherwise, the Frequency value is based
    on the system timer frequency.

    Because the Stopwatch frequency depends on the installed hardware and
    operating system, the Frequency value remains constant while the
    system is running.

    So essentially the frequency of the stopwatch can be different on different hardware which means the ticks are of a different size (and of a different size to the tick in the timespan and datetime objects).

    Interestingly you are already using the Elapsed property StopWatch which gives you a timespan. sw.Elapsed is a TimeSpan which is probably what you are after when you are trying to get the TimeSpan object. If you want to use ticks you can use the Ticks property of this TimeSpan instead.

    Alternatively you can use ElapsedMilliseconds which returns a long.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been using Perl for some time, but today I came across this
I have been using the AddressBook api of the iPhone for some time now.
I've been using repositories for data access for some time now but have never
I have been using the python logging module for quite some time now, but
I have been using both git and svn for quite some time now, and
I have been using the jquery appear plugin for some time now, but it
I have been using Grails for some time now, but in school they are
I have been using the partial class modifier for some time in order to
I have been using com.sun.org.apache.xpath.internal.XPathAPI for some time and it seems to work ok.
I have been using ActiveResource in my Ruby on Rails applications for some time,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.