[Mono-bugs] [Bug 28291][Maj] New - Threading does not support combined start delegate

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
28 Jul 2002 19:34:43 -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 dick@ximian.com.

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

--- shadow/28291	Sun Jul 28 15:34:43 2002
+++ shadow/28291.tmp.26196	Sun Jul 28 15:34:43 2002
@@ -0,0 +1,28 @@
+Bug#: 28291
+Product: Mono/Runtime
+Version: unspecified
+OS: other
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Major
+Component: misc
+AssignedTo: dick@ximian.com                            
+ReportedBy: dick@ximian.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Threading does not support combined start delegate
+
+static void Main(string[] args)
+{
+    ThreadStart tsd = new ThreadStart(method1);
+    tsd += new ThreadStart(method2);
+    Thread t = new Thread(tsd);
+    t.Start();
+    t.Join();
+}
+
+Reported by Hercules <herculeschoy@hotmail.com>