| EscapeValueAttributeUnescape Method |
This is used to return an unescaped and HTML decoded MSBuild value
Namespace: SandcastleBuilder.Utils.DesignAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax public static string Unescape(
string escapedValue
)
Public Shared Function Unescape (
escapedValue As String
) As String
public:
static String^ Unescape(
String^ escapedValue
)
static member Unescape :
escapedValue : string -> string
Parameters
- escapedValue
- Type: SystemString
The escaped value
Return Value
Type:
StringThe unescaped and HTML decoded value
Remarks MSBuild provides an escape method but no unescape method.
Go figure.
See Also