ProjectCollection.Unescape(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 ";".