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:
authorDick Porter <dick@acm.org>2002-07-20 14:30:18 +0400
committerDick Porter <dick@acm.org>2002-07-20 14:30:18 +0400
commit1efda2a6a0c0b3bddb40b4287ae948d38e09e4cc (patch)
tree14135f2813a1a15869267c0795324fadb3df261c /mcs/class/System/System.Diagnostics/ProcessStartInfo.cs
parentb083768ef977b84fd849c230b1649d77b508db42 (diff)
2002-07-20 Dick Porter <dick@ximian.com>
* Process.cs: Implement file handle redirection 2002-07-20 Dick Porter <dick@ximian.com> * MonoIO.cs: Added icall to CreatePipe 2002-07-20 Dick Porter <dick@ximian.com> * MonoIO.cs: Cut down copy of corlib/System.IO/MonoIO.cs, so it can be used from the System assembly but still not be exposed to users. svn path=/trunk/mcs/; revision=5961
Diffstat (limited to 'mcs/class/System/System.Diagnostics/ProcessStartInfo.cs')
-rwxr-xr-xmcs/class/System/System.Diagnostics/ProcessStartInfo.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcs/class/System/System.Diagnostics/ProcessStartInfo.cs b/mcs/class/System/System.Diagnostics/ProcessStartInfo.cs
index 323c0a92791..fc2f87ce27a 100755
--- a/mcs/class/System/System.Diagnostics/ProcessStartInfo.cs
+++ b/mcs/class/System/System.Diagnostics/ProcessStartInfo.cs
@@ -11,16 +11,16 @@ using System.Collections.Specialized;
namespace System.Diagnostics {
public sealed class ProcessStartInfo {
- [MonoTODO]
public ProcessStartInfo() {
}
- [MonoTODO]
public ProcessStartInfo(string filename) {
+ this.filename=filename;
}
- [MonoTODO]
public ProcessStartInfo(string filename, string arguments) {
+ this.filename=filename;
+ this.arguments=arguments;
}
private string arguments="";