Esempio n. 1
0
 public IEnumerable<string> FormatCommandLine(string prefix, CommandLineArgumentStyle argumentStyle)
 {
     return argumentStyle == CommandLineArgumentStyle.SingleWithEqualsSignDelimiter
         ? FormatSingleCommandLineWithEqualsDelimiter(prefix)
         : FormatSeparatedCommandLine(prefix);
 }
Esempio n. 2
0
 public IEnumerable <string> FormatCommandLine(string prefix, CommandLineArgumentStyle argumentStyle)
 {
     return(argumentStyle == CommandLineArgumentStyle.SingleWithEqualsSignDelimiter
         ? FormatSingleCommandLineWithEqualsDelimiter(prefix)
         : FormatSeparatedCommandLine(prefix));
 }
Esempio n. 3
0
 public IEnumerable <string> FormatCommandLine(string prefix, CommandLineArgumentStyle argumentStyle)
 {
     return(new[] { prefix + Name });
 }
Esempio n. 4
0
 public IEnumerable<string> FormatCommandLine(string prefix, CommandLineArgumentStyle argumentStyle)
 {
     return new[] {Value};
 }