|
| From: | Deryk Robosson |
| Subject: | [Pnet-developers] [bug #11454] BOGUS: incompatible types in event addition |
| Date: | Sat, 28 May 2005 07:28:45 +0000 |
| User-agent: | Mozilla/4.0 (compatible; MSIE 6.0; X11; Linux i686; en) Opera 8.0 |
Update of bug #11454 (project dotgnu-pnet):
Status: None => Wont Fix
Open/Closed: Open => Closed
_______________________________________________________
Follow-up Comment #4:
What was provided as the test case is in fact incorrect for a multicast
delegate. What follows is a quick sample (albeit a little incomplete for
parameters).
using System;
class test
{
delegate void fooDel();
public void test()
{
fooDel bar = new fooDel(foo2);
bar += new fooDel(foo);
}
void foo2()
{
}
void foo()
{
}
static void Main()
{
test te = new test();
}
}
_______________________________________________________
Reply to this item at:
<http://savannah.gnu.org/bugs/?func=detailitem&item_id=11454>
_______________________________________________
Message sent via/by Savannah
http://savannah.gnu.org/
| [Prev in Thread] | Current Thread | [Next in Thread] |