[Mono-bugs] [Bug 60401][Min] New - Missing parentheses for method calls

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Fri, 18 Jun 2004 04:38:53 -0400 (EDT)


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 jwezel@compumaster.de.

http://bugzilla.ximian.com/show_bug.cgi?id=60401

--- shadow/60401	2004-06-18 04:38:53.000000000 -0400
+++ shadow/60401.tmp.7782	2004-06-18 04:38:53.000000000 -0400
@@ -0,0 +1,35 @@
+Bug#: 60401
+Product: Mono: Compilers
+Version: unspecified
+OS: Red Hat 9.0
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Minor
+Component: Basic
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: jwezel@compumaster.de               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Missing parentheses for method calls
+
+Description of Problem:
+1. Declaration of methods should work without parentheses, too (if there 
+are no parameters)
+2. Calling methods should work without parantheses, too (if there are no 
+parameters)
+
+Working example on VBC:
+public class myTestApp
+public shared sub Main()
+System.Console.WriteLine("hello world!")
+ebbes
+System.Console.ReadLine()
+end sub
+shared sub ebbes 
+system.console.writeline("some text...")
+end sub
+end class