[Mono-bugs] [Bug 24172] New - parenthesized expressions as targets in invocation expressions
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
3 May 2002 09:41:03 -0000
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by stodden@in.tum.de.
http://bugzilla.ximian.com/show_bug.cgi?id=24172
--- shadow/24172 Fri May 3 05:41:03 2002
+++ shadow/24172.tmp.11868 Fri May 3 05:41:03 2002
@@ -0,0 +1,24 @@
+Bug#: 24172
+Product: Mono/MCS
+Version: unspecified
+OS: other
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: Misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: stodden@in.tum.de
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: parenthesized expressions as targets in invocation expressions
+
+mcs does not allow method invocation targets written as parenthesized
+expressions. could be used with delegates.
+
+e.g.
+MyDelegate del1, del2 =..;
+(del1 + del2)( 42 );