Init
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
namespace QFSW.QC.Parsers
|
||||
{
|
||||
public class StringParser : BasicCachedQcParser<string>
|
||||
{
|
||||
public override int Priority => int.MaxValue;
|
||||
|
||||
public override string Parse(string value)
|
||||
{
|
||||
return value
|
||||
.ReduceScope('"', '"')
|
||||
.UnescapeText('"');
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user