You've already forked linux-packaging-mono
Imported Upstream version 6.4.0.137
Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
This commit is contained in:
parent
e9207cf623
commit
ef583813eb
@ -31,6 +31,7 @@
|
||||
|
||||
using Microsoft.Win32;
|
||||
using System.Collections;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Collections.Specialized;
|
||||
using System.ComponentModel;
|
||||
using System.IO;
|
||||
@ -48,6 +49,19 @@ namespace System.Diagnostics
|
||||
get { return (environmentVariables != null); }
|
||||
}
|
||||
|
||||
Collection<string> _argumentList;
|
||||
|
||||
public Collection<string> ArgumentList {
|
||||
get {
|
||||
if (_argumentList == null) {
|
||||
_argumentList = new Collection<string>();
|
||||
}
|
||||
return _argumentList;
|
||||
}
|
||||
}
|
||||
|
||||
public Encoding StandardInputEncoding { get; set; }
|
||||
|
||||
static readonly string [] empty = new string [0];
|
||||
|
||||
[DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden), Browsable (false)]
|
||||
|
Reference in New Issue
Block a user