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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T09:02:00+00:00 2026-05-29T09:02:00+00:00

I would like to Monitor.Enter(this.StaticLock); try { // Do something … ThreadPool.QueueUserWorkItem(state => {

  • 0

I would like to

Monitor.Enter(this.StaticLock);
try
{
    // Do something ...

    ThreadPool.QueueUserWorkItem(state =>
    {
        try
        {
             // Do something else...

        }
        finally
        {
            Monitor.Exit(this.StaticLock);
        }
    });
}
catch (Exception)
{
    Monitor.Exit(this.StaticLock);
    throw;
}

But it doesn’t work since the it can’t Monitor.Exit on an object that wasn’t Monitor.Enter in the current thread. How to do that? Should I use interthread communication?

  • 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-29T09:02:01+00:00Added an answer on May 29, 2026 at 9:02 am

    Semaphores allow you to lock them in one thread and unlock them in another.

    But this kind of behavior is very suspicious to me… What exactly are you trying to accomplish? This should almost never be done in practice.

    static readonly Semaphore semaphore = new Semaphore(1, 1);
    
    void Method1()
    {
        semaphore.WaitOne();
        try
        {
            // Do something ...
    
            new Thread(() =>
            {
                try
                {
                    // Do something else...
    
                }
                finally
                {
                    semaphore.Release();
                }
            }).Start();
        }
        catch (Exception)
        {
            semaphore.Release();
            throw;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to monitor a log file that is being written to by
I would like to monitor the following system information in Java: Current CPU usage**
I would like to monitor my program which is running on the web server.
I would like to be able to monitor my major system health indicators from
I would like to ask couple of Questions regarding the use of Monitor Class
I have a few JAVA application that I monitor using JMX. I would like
What would be the best way to monitor services like HTTP/FTP/IMAP/POP3/SMTP for a few
I have a set of files and I would like to monitor them for
I would like to roughly monitor the progress of a file upload. I know
I would like to monitor a simple url . But when its a https

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.