C# delegate for two methods with different parameters - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T23:55:19Zhttp://stackoverflow.com/feeds/question/377217http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/377217/c-delegate-for-two-methods-with-different-parameters5C# delegate for two methods with different parametersalexandrul2008-12-18T08:36:01Z2008-12-18T09:16:24Z
<p>I am using the following methods:</p>
<pre><code>public void M1(Int32 a)
{
// acquire MyMutex
DoSomething(a);
// release MyMutex
}
</code></pre>
<p>and</p>
<pre><code>public void M2(String s, String t)
{
// acquire MyMutex
DoSomethingElse(s, t);
// release MyMutex
}
</code></pre>
<p>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.</p>
<p>Are there any other alternatives to write something like this:</p>
<pre><code>public void UsingMutex(...)
{
// acquire MyMutex
...
// release MyMutex
}
UsingMutex(M1);
UsingMutex(M2);
</code></pre>
<p>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.</p>
<p>It is possible to combine generics with delegates? And if so, do you have some links for any kind of documentation?</p>
<p>Environment: C# 2.0</p>
http://stackoverflow.com/questions/377217/c-delegate-for-two-methods-with-different-parameters/377224#3772245Answer by Marc Gravell for C# delegate for two methods with different parametersMarc Gravell2008-12-18T08:37:34Z2008-12-18T08:45:12Z<p>Absolutely you can mix delegates with generics. In 2.0, <code>Predicate<T></code> 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?</p>
<p>i.e.</p>
<pre><code> 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);
}
</code></pre>
<p>Note that <code>Action</code> is defined for you in .NET 3.5, but you can re-declare it for 2.0 purposes ;-p</p>
<p>Note that the anonymous method (<code>delegate {...}</code>) can also be parameterised:</p>
<pre><code> 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);
}
</code></pre>
<p>Finally, C# 3.0 makes this all a lot easier and prettier with "lambdas", but that is another topic ;-p</p>
http://stackoverflow.com/questions/377217/c-delegate-for-two-methods-with-different-parameters/377227#3772272Answer by Brian Rasmussen for C# delegate for two methods with different parametersBrian Rasmussen2008-12-18T08:39:02Z2008-12-18T08:39:02Z<p>If you look at the <code>Func<T></code> and <code>Action<T></code> delegates in the framework, you'll see that they define a number of similar delegates with different number of parameters. You can use generics, but that doesn't solve the number of arguments issue you're talking about. </p>
http://stackoverflow.com/questions/377217/c-delegate-for-two-methods-with-different-parameters/377229#3772293Answer by Mehrdad Afshari for C# delegate for two methods with different parametersMehrdad Afshari2008-12-18T08:40:22Z2008-12-18T09:16:24Z<p>Yes, it's possible to combine generics with delegates.</p>
<pre><code>public delegate void Action<T>(T x);
public delegate void Action<T,U>(T x, U y);
public void UsingMutex<T>(Action<T> x, T t) {
// acquire mutex...
x(t);
// release mutex...
}
public void UsingMutex<T,U>(Action<T,U> x, T t, U u) {
// acquire mutex...
x(t, u);
// release mutex...
}
</code></pre>
<p>But you still have to handle different number of parameters using overloads.</p>