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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T11:38:23+00:00 2026-05-11T11:38:23+00:00

I know that this question has been asked before, but I’m looking for a

  • 0

I know that this question has been asked before, but I’m looking for a way to:

  1. streamline the creation of safe cross-threaded code.
  2. reuse this code in any situation (no Windows Forms references).

Here’s what I have so far, but I want to remove the Windows Forms references. Any ideas?

public delegate void SafeInvokeDelegate(System.Action action); public class SafeInvoke {     private readonly System.Windows.Forms.Control _threadControl;      public SafeInvoke()     {         _threadControl = new System.Windows.Forms.Control();     }      public void Invoke(System.Action action)     {         if (_threadControl.InvokeRequired)             _threadControl.Invoke(new SafeInvokeDelegate(Invoke), new object[] {action});         else if (action != null) action();     } } 

The above class might be used this way:

SafeInvoke _safeInvoker = new SafeInvoke(); void SafeClearItems() {     _safeInvoker.Invoke(delegate         {             listView1.Items.Clear();         }); } 

How would I remove the System.Windows.Forms.Control in the SafeInvoke class but keep the same functionality?

  • 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. 2026-05-11T11:38:24+00:00Added an answer on May 11, 2026 at 11:38 am

    You also could use an extension method and lambdas to make your code much cleaner.

    using System.ComponentModel; public static class ISynchronizeInvokeExtensions {   public static void InvokeEx<T>(this T @this, Action<T> action) where T : ISynchronizeInvoke   {     if (@this.InvokeRequired)     {       @this.Invoke(action, new object[] { @this });     }     else     {       action(@this);     }   } } 

    So now you can use InvokeEx on any ISynchronizeInvoke and be able to access the properties and fields of implementing class.

    this.InvokeEx(f => f.listView1.Items.Clear()); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 176k
  • Answers 176k
  • 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 For getting all the employees starting with "John", you can… May 12, 2026 at 3:13 pm
  • Editorial Team
    Editorial Team added an answer Your exception means that urla has a value of None.… May 12, 2026 at 3:13 pm
  • Editorial Team
    Editorial Team added an answer The best advice on this I've read: How we reduced… May 12, 2026 at 3:13 pm

Related Questions

I know that this question has been asked before, but I'm looking for a
What are the best Ruby / Rails book available right now ? Note :
I know that this question has been asked many times before in different guises
I know this question has been asked before, but I ran into a problem.
I know this question has been asked before, but I feel it wasn't asked

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.