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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T08:07:55+00:00 2026-05-11T08:07:55+00:00

I am writing an API in C# and I want to provide both synchronous

  • 0

I am writing an API in C# and I want to provide both synchronous and asynchronous versions of the publicly available methods. For example, if I have the following function:

public int MyFunction(int x, int y) {    // do something here    System.Threading.Thread.Sleep(2000);    return  x * y;  } 

how can I create an asynchronous version of the above method (perhaps BeginMyFunction and EndMyFunction)? Are there different ways to achieve the same result, and what are the benefits of the various approaches?

  • 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-11T08:07:55+00:00Added an answer on May 11, 2026 at 8:07 am

    The generic approach is to use a delegate:

    IAsyncResult BeginMyFunction(AsyncCallback callback) {     return BeginMyFunction(callback, null); }  IAsyncResult BeginMyFunction(AsyncCallback callback, object context) {     // Func<int> is just a delegate that matches the method signature,     // It could be any matching delegate and not necessarily be *generic*     // This generic solution does not rely on generics ;)     return new Func<int>(MyFunction).BeginInvoke(callback, context); }  int EndMyFunction(IAsyncResult result) {     return new Func<int>(MyFunction).EndInvoke(result); } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing an API and have come across the following pattern: My API
I am writing an API that I want to be usable from both Scala
I'm writing a service using plain C++ and the windows API and want it
I'm currently writing an API document in LaTeX. I have a tabular environment with
I'm writing an API and want to follow the REST approach. As I understand
I'm writing an API wrapper to a couple of different web services. I have
I am writing a reservation API and I want to create temporary holds on
I am writing an API test case for server errors. I want to stub
I am writing an API to be used by both my JavaScript app (same
If I am writing an API that takes an int parsed from a string,

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.