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

  • Home
  • SEARCH
  • 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 347783
In Process

The Archive Base Latest Questions

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

Possible duplicate question: Is there a way to indefinitely pause a thread? In my

  • 0

Possible duplicate question: Is there a way to indefinitely pause a thread?


In my code i do the below

Thread mainThread
//...
mainThread.Resume();

void StartThread()
{
    while (!wantQuit)
    {
        db.runEmail();
        mainThread.Suspend();
    }
}

Then i get the exception below because i call resume when it hasnt been suspended.

System.Threading.ThreadStateException

I notice this warning

warning CS0618: 'System.Threading.Thread.Resume()' is obsolete: 'Thread.Resume has been deprecated.  Please use other classes in System.Threading, such as Monitor, Mutex, Event, and Semaphore, to synchronize Threads or protect resources.  http://go.microsoft.com/fwlink/?linkid=14202'

So i wonder is there a way to resume and ignore the exception/case that it is not suspended? I hate writing the below instead of just one line

        try
        {
            mainThread.Resume();
        }
        catch (System.Threading.ThreadStateException e)
        {
        }
  • 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-12T11:18:14+00:00Added an answer on May 12, 2026 at 11:18 am

    The easy solution is to fix your logic and don’t call Resume() when you are not Suspended().

    But the Resume/Suspend API is indeed deprecated, take a look at, for example:

    1) Monitor, Wait() and Pulse()

    2) AutoResetEvent or ManualResetEvent, Set() and WaitOne()

    The static class Monitor is a little easier to use and integrates with lock() {} , but a ResetEvent might be more appropriate here because you can create it in set or unset mode and you are less likely to ‘miss’ a signal. By contrast, a Monitor.Pulse() will just be lost when the Wait() happens later.


    Will inserted a link in your question, and while I don’t consider it a duplicate, the accepted answer there is well suited to cure you from using Suspend/Resume.

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

Sidebar

Ask A Question

Stats

  • Questions 167k
  • Answers 167k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Look into the django-dbsettings project. May 12, 2026 at 1:27 pm
  • Editorial Team
    Editorial Team added an answer No, request.form doesn't work. First, I don't have a name,… May 12, 2026 at 1:27 pm
  • Editorial Team
    Editorial Team added an answer I guess it as simple as trying to write a… May 12, 2026 at 1:27 pm

Related Questions

Possible Duplicate: How can I create a temp file with a specific extension with
Possible Duplicate: Is there a way for MS Access to grab the current Active
Possible Duplicate: How can I pre-set arguments in JavaScript function call? (Partial Function Application)
Possible Duplicate: Is a Linux executable compatible with OS X? I have some c++

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.