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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T00:25:54+00:00 2026-05-16T00:25:54+00:00

How can I write an invoke method with two parameters of differing variable types?

  • 0

How can I write an invoke method with two parameters of differing variable types?

    public void InsertStockPrice(double Value, string Company)
    {
        if (InvokeRequired)
        {
            Invoke(new Action<double>(InsertStockPrice), Value); // <- Not sure what to do here
        }
        else
        {
            //Do stuff
        }
    }
  • 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-16T00:25:55+00:00Added an answer on May 16, 2026 at 12:25 am

    I suspect this is what Jimmy meant (as Control.Invoke wouldn’t really know what to do with an Action<double, string>:

    public void InsertStockPrice(double value, string company)
    {
        if (InvokeRequired)
        {
            MethodInvoker invoker = () => InsertStockPrice(value, company);
            Invoke(invoker);
        }
        else
        {
            // Do stuff
        }
    }
    

    If you’re using C# 2:

    public void InsertStockPrice(double value, string company)
    {
        if (InvokeRequired)
        {
            MethodInvoker invoker = delegate { InsertStockPrice(value, company); }
            Invoke(invoker);
        }
        else
        {
            // Do stuff
        }
    }
    

    Note that I’ve changed the case of your parameters to fit in with normal .NET conventions.

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

Sidebar

Ask A Question

Stats

  • Questions 545k
  • Answers 545k
  • 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 You could try something like: Textbox1.BackColor = System.Drawing.ColorTranslator.FromHtml("#F2F0E1"); May 17, 2026 at 8:19 am
  • Editorial Team
    Editorial Team added an answer You need to put the image in a button, and… May 17, 2026 at 8:19 am
  • Editorial Team
    Editorial Team added an answer Well, one thing that you are doing wrong is that… May 17, 2026 at 8:19 am

Trending Tags

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

Top Members

Related Questions

I can write: update my_table set xml = updateXML(xml, '/a/b', '1') where document_id =
In SQL one can write a query that searches for a name of a
I know that with mysql you can write SQL statements into a .sql file
Is there a way I can write text to a file from a certain
In Eclispe you can do Ctrl+Shift+R and a Window popup where you can write
I'm writing an app where 3rd party vendors can write plugin DLLs and drop
In PHP, I can write: $vname = 'phone'; $$vname = '555-1234'; print $phone; ...
What is the least amount of code you can write to create, sort (ascending),
Is there some command line or AppleScript that I can write/run to make the
In C# language when you refer to an array element you can write: myclass.my_array['element_name']

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.