CommandLineBuilder.AppendTextUnquoted(String) Method

Definition

Appends a string. No quotes are added. This method does not append a space to the command line before executing.

public:
 void AppendTextUnquoted(System::String ^ textToAppend);
protected:
 void AppendTextUnquoted(System::String ^ textToAppend);
public void AppendTextUnquoted (string textToAppend);
protected void AppendTextUnquoted (string textToAppend);
member this.AppendTextUnquoted : string -> unit
Public Sub AppendTextUnquoted (textToAppend As String)
Protected Sub AppendTextUnquoted (textToAppend As String)

Parameters

textToAppend
String

The string to append

Examples

AppendTextUnquoted(@"Folder name\filename.cs") => "Folder name\filename.cs"

Remarks

In the future, this function may fixup 'textToAppend' to handle literal embedded quotes.

Applies to