[Fwd: Re: [Mono-list] bug in mcs and more.]
Miguel de Icaza
miguel@ximian.com
03 Apr 2002 09:05:05 -0500
> So I tried to create a small c#-code that gives me the same error.
> This gives me exactly the same error..
> ------
>
> using System;
>
> class TestClass {
> public delegate string test(string s, params string[] args);
>
> public static void Main() {
> System.Console.WriteLine("hello test");
> }
> }
> -------
I have now fixed half the problem. Now the delegate declaration works,
but it is still missing the invocation side of the equation. This was a
missing feature in the delegate support.
Miguel