ProjectCollection.Unescape(String) Method

Definition

Unescape a string using MSBuild escaping format. For example, "%3b" for ";". All escaped characters are unescaped.

public:
 static System::String ^ Unescape(System::String ^ escapedString);
public static string Unescape (string escapedString);
static member Unescape : string -> string
Public Shared Function Unescape (escapedString As String) As String

Parameters

escapedString
String

The string to be converted.

Returns

The converted string.

Remarks

For example, "%3b" is converted to ";".

Applies to