[Mono-bugs] [Bug 54175][Wis] New - Process.GetCurrentProcess().Kill() is not working!
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Tue, 10 Feb 2004 17:17:17 -0500 (EST)
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 vguzev@yandex.ru.
http://bugzilla.ximian.com/show_bug.cgi?id=54175
--- shadow/54175 2004-02-10 17:17:17.000000000 -0500
+++ shadow/54175.tmp.15472 2004-02-10 17:17:17.000000000 -0500
@@ -0,0 +1,50 @@
+Bug#: 54175
+Product: Mono/Class Libraries
+Version: unspecified
+OS: GNU/Linux [Other]
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: System
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: vguzev@yandex.ru
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Process.GetCurrentProcess().Kill() is not working!
+
+Description of Problem:
+Process.GetCurrentProcess().Kill() is either not implemented or not
+working properly!
+
+Steps to reproduce the problem:
+1. Compile and run the following program:
+
+using System;
+using System.Diagnostics;
+
+public class ProcessHalt {
+ public static void Main( string[] args ) {
+ Process.GetCurrentProcess().Kill();
+ Console.WriteLine( "Hello world!" );
+ Console.ReadLine();
+ Console.WriteLine( "The end!" );
+ }
+}
+
+Actual Results:
+It prints "Hello world!" ànd then prints "The end!" after the "Enter" key
+is pressed.
+
+
+Expected Results:
+Application should stop without any results.
+
+
+How often does this happen?
+Always
+
+Additional Information: