mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
create UnEscapeString function
This commit is contained in:
parent
84d4084f83
commit
d2ac2a7e7c
1 changed files with 5 additions and 0 deletions
|
@ -545,6 +545,11 @@ namespace System
|
||||||
return UnQuoteString(Ptr, Length, outString);
|
return UnQuoteString(Ptr, Length, outString);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Result<void> UnEscapeString(String outString)
|
||||||
|
{
|
||||||
|
return UnEscapeString(Ptr, Length, outString);
|
||||||
|
}
|
||||||
|
|
||||||
static String sHexUpperChars = "0123456789ABCDEF";
|
static String sHexUpperChars = "0123456789ABCDEF";
|
||||||
public void ToString(String outString, String format, IFormatProvider formatProvider)
|
public void ToString(String outString, String format, IFormatProvider formatProvider)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue