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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T09:04:21+00:00 2026-06-14T09:04:21+00:00

I need to start a Task in C# so I’m creating an action object.

  • 0

I need to start a Task in C# so I’m creating an action object.

private Action<int, int, int> action = (int p1, int p2, int p3) =>
{
    // do some stuff with p1, p2 and p3.
};

However, when I try and create a task from it I realise that new Task can only take an Action or Action<object> and refuses to accept my action with it’s multiple templated arguments.

Do you have any ideas how I can create this task object and have me pass in the args?

  • 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-06-14T09:04:23+00:00Added an answer on June 14, 2026 at 9:04 am

    Just use a lambda to convert to the right delegate type:

    Action<int, int, int> action = (int p1, int p2, int p3) =>
    {
        // do some stuff with p1, p2 and p3.
    };
    
    //a closure can capture over any values you might want to pass in
    Task.Run(() => action(1, 2, 3));
    

    If your think about it, you cannot hand a Action<int, int, int> to Task.Run because you also have to supply parameters. Task.Run cannot know what you want to pass in.

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

Sidebar

Related Questions

I need to create a rake task to do some active record operations via
I need to start a copy of a Rails app from within Java. I
I want to (need to) start a sub-process from a perl script that checks
I need to start same task on different tabs/browsers/clients at the same exact time.
I need to launch a background task from a servlet in a GlassFish server,
I have a need to start a new thread for a long running task
I am using a Task to read some data from the Database etc. Let's
I need to start a monitor on some machines to find out which processes
I need start off with code because I am not sure what terminology to
I need to start up a jetty with an external (possibly remote) .war file

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.