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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:51:45+00:00 2026-05-10T22:51:45+00:00

I am using the following methods: public void M1(Int32 a) { // acquire MyMutex

  • 0

I am using the following methods:

public void M1(Int32 a) {   // acquire MyMutex   DoSomething(a);   // release MyMutex } 

and

public void M2(String s, String t) {   // acquire MyMutex   DoSomethingElse(s, t);   // release MyMutex } 

From what I have found so far it seems that it is not possible to use a single delegate for two methods with different signatures.

Are there any other alternatives to write something like this:

public void UsingMutex(...) {   // acquire MyMutex   ...   // release MyMutex }  UsingMutex(M1); UsingMutex(M2); 

All I can think for the moment is to use two delegates and a boolean flag to know which delegate to call, but it is not a long term solution.

It is possible to combine generics with delegates? And if so, do you have some links for any kind of documentation?

Environment: C# 2.0

  • 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-10T22:51:46+00:00Added an answer on May 10, 2026 at 10:51 pm

    Absolutely you can mix delegates with generics. In 2.0, Predicate<T> etc are good examples of this, but you must have the same number of args. In this scenario, perhaps an option is to use captures to include the args in the delegate?

    i.e.

        public delegate void Action();     static void Main()     {         DoStuff(delegate {Foo(5);});         DoStuff(delegate {Bar('abc','def');});     }     static void DoStuff(Action action)     {         action();     }     static void Foo(int i)     {         Console.WriteLine(i);     }     static void Bar(string s, string t)     {         Console.WriteLine(s+t);     } 

    Note that Action is defined for you in .NET 3.5, but you can re-declare it for 2.0 purposes ;-p

    Note that the anonymous method (delegate {...}) can also be parameterised:

        static void Main()     {         DoStuff(delegate (string s) {Foo(5);});         DoStuff(delegate (string s) {Bar(s,'def');});     }     static void DoStuff(Action<string> action)     {         action('abc');     }     static void Foo(int i)     {         Console.WriteLine(i);     }     static void Bar(string s, string t)     {         Console.WriteLine(s+t);     } 

    Finally, C# 3.0 makes this all a lot easier and prettier with ‘lambdas’, but that is another topic ;-p

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

Sidebar

Ask A Question

Stats

  • Questions 83k
  • Answers 83k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer It could be that you haven't got a callback in… May 11, 2026 at 4:45 pm
  • Editorial Team
    Editorial Team added an answer I've encountered similar problem a while ago. The solution was… May 11, 2026 at 4:45 pm
  • Editorial Team
    Editorial Team added an answer You could calculate the number of seconds to midnight every… May 11, 2026 at 4:45 pm

Related Questions

I am using C# 3.0 and NUnit. I'm wondering if there is a standard
Domain Model I am working on has root aggregate and child entities. Something like
With reference to this programming game I am currently building. I have a Class
I've got a third-party component that does PDF file manipulation. Whenever I need to

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.