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 7027239
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:13:18+00:00 2026-05-28T00:13:18+00:00

public void Foo(IRB inR) { Stopwatch sw = new Stopwatch(); sw.Start(); System.Threading.Thread theThread =

  • 0
public void Foo(IRB inR) {
    Stopwatch sw = new Stopwatch();
    sw.Start();

    System.Threading.Thread theThread = new System.Threading.Thread(delegate() {
            if (inR.Ready) {
                inR.ABC();
                while (!inR.Ready) { Thread.Sleep(100); }
            }
            mP.CP = false;
        });
    theThread.Name = "aaabbbccc";
    theThread.Start();
}

So, I want use StopWatch measuring the time that “theThread” running. (Actually, I want to measure time from creating of this thread to end of thread.)
I already put stopwatch.start() where I want. But where should I put my stopwatch.stop()?
Thank you.

  • 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-28T00:13:19+00:00Added an answer on May 28, 2026 at 12:13 am

    Why not put the stopwatch code in the thread itself? For example:

    public class ThreadTimer
    {
        private readonly ThreadStart realWork;
    
        public ThreadTimer(ThreadStart realWork)
        {
            this.realWork = realWork;
        }
    
        public void TimeAndExecute()
        {
            Stopwatch stopwatch = Stopwatch.StartNew();
            try
            {
                realWork();
            }
            finally
            {
                stopwatch.Stop();
                // Log or whatever here
            }
        }
    }
    

    Then:

    ThreadStart work = delegate() {
        if (inR.Ready) {
            inR.ABC();
            while (!inR.Ready) { Thread.Sleep(100); }
        }
        mP.CP = false;
    };
    ThreadTimer timer = new ThreadTimer(work);
    Thread thread = new Thread(timer.TimeAndExecute);
    thread.Start();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is the Java code: public void foo() { final long start = System.nanoTime();
public void Bar() { Foo foo = new Foo(); **foo.MyEvent += foo_MyEvent;** foo.FireEvent(); }
I'd like to code a function like the following public void Foo(System.Type t where
public void Foo (IEnumerable<object> objects) { } var strings = new List<string>{first, second, third};
Does anyone know why: public void foo() { System.out.println(Hello); return; System.out.println(World!); } Would be
public void foo(){ throw new Exception(foo); } public void bar(){ foo(); } Is it
public class A { public void foo() { System.out.println(A's foo); } } public class
Say we have: public void foo() { someRefType test = new someRefType (); test
class Foo { public: void bar(); }; void Foo::bar() { static int n =
For example public interface X{ public void foo(X i); } public class Y implements

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.