Returns the unescape form of "key"
Parameters
- key (String)
- Key to unescape
Return Value
key, unescaped
Examples
CopyC#
string escaped = Sofu.Sofu.SofuObject.KeyUnescape("Hello<20>World"); Console.Out.WriteLine(escaped); //Writes "Hello World"