allow subclasses to set Arguments value, and provide a ToString implementation
This commit is contained in:
parent
2ed59233b3
commit
fbc51f8e18
@ -29,7 +29,7 @@ namespace MBS.Framework
|
||||
/// Gets the original <see cref="String" /> array of arguments.
|
||||
/// </summary>
|
||||
/// <value>The arguments.</value>
|
||||
public string[] Arguments { get; private set; }
|
||||
public string[] Arguments { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the list of file names passed on the command line.
|
||||
@ -46,5 +46,10 @@ namespace MBS.Framework
|
||||
{
|
||||
this.Arguments = arguments;
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return String.Join(" ", Arguments);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user