Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2002-12-21 03:14:16 +0300
committerMiguel de Icaza <miguel@gnome.org>2002-12-21 03:14:16 +0300
commit594edb6fd8c9a55713000ba78048563ba146f3a3 (patch)
tree0debcfbb087031559b01706fa4fd7f056a749831 /mcs/class/System/System.Diagnostics
parentcfd9e478ee015d78ec64d4065235a9d543d953af (diff)
Fix from Matt Kunze to add the other Process.Start overloads
svn path=/trunk/mcs/; revision=9800
Diffstat (limited to 'mcs/class/System/System.Diagnostics')
-rwxr-xr-xmcs/class/System/System.Diagnostics/Process.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/mcs/class/System/System.Diagnostics/Process.cs b/mcs/class/System/System.Diagnostics/Process.cs
index 6c153d4ee6f..822453f97b9 100755
--- a/mcs/class/System/System.Diagnostics/Process.cs
+++ b/mcs/class/System/System.Diagnostics/Process.cs
@@ -632,15 +632,13 @@ namespace System.Diagnostics {
}
}
- [MonoTODO]
public static Process Start(string fileName) {
- throw new NotImplementedException();
+ return Start(new ProcessStartInfo(fileName));
}
- [MonoTODO]
public static Process Start(string fileName,
string arguments) {
- throw new NotImplementedException();
+ return Start(new ProcessStartInfo(fileName, arguments));
}
public override string ToString() {