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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:34:20+00:00 2026-05-28T07:34:20+00:00

I want to have the main thread spawn threads and be able to keep

  • 0

I want to have the main thread spawn threads and be able to keep spawning more with out waiting for all of the threads to finish. The spawning of the threads is user controlled, so the user could add at different periods of time more threads.

The thing is… how can I do this, when the main thread is running the finalize. In the finalize make it wait until all active threads have finished.

  • 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-28T07:34:20+00:00Added an answer on May 28, 2026 at 7:34 am

    Keep track of all your created threads; for example, through a List<Thread> collection. When you’re in your finalize method, just iterate over all your threads and call their Join method sequentially, as shown in the WaitForThreads method below:

    private readonly List<Thread> threads = new List<Thread>();
    
    public void SpawnThread(Action action)
    {
        Thread thread = new Thread(new ThreadStart(action));
        thread.IsBackground = false;
        threads.Add(thread);
        thread.Start();
    }
    
    private void WaitForThreads()
    {
        foreach (Thread thread in threads)
            thread.Join();
    }
    

    Thread.Join blocks the calling thread (which should be your main thread) until the specific thread terminates. If the thread was already terminated, then the call would return immediately (which is why you don’t really need to remove threads from the collection upon termination, although you still should for the sake of garbage collection).

    Also, you should consider why you need to wait for the threads to terminate within your finalize method. If it’s simply to prevent them from being forcibly aborted when your main thread terminates, then there’s no need; your process would remain alive (even without a window) until all threads whose IsBackground property is false finish executing. Similarly for garbage collection; your heap objects will not get finalized until they’re no longer referenced from any live thread, not just the main.

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

Sidebar

Related Questions

I have two threads main thread and worker thread. What I want to be
I have one main thread that starts 10 other threads. I want that the
I have main categories and sub categories. I want to be able to sort
I have a log out button on my main menu and I want it
In a program in c# I have 2 threads apart from the main thread.
I have a list of threads, and I'm trying to get my main thread
I have an app and want to put the main thread to sleep for
I have a process where I want the main thread to run through a
I have a main page that I want to be a sort of dispatch
I have a main domain MYDOMAIN.COM I want to make it easy for me

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.