We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Quote should be escaped. SyntaxErrorException throws when I serialize and deserialize a string 'a.
SyntaxErrorException
'a
REPRO
using System.IO; using YamlDotNet.Serialization; public class Program { static void Main(string[] args) { string k = "'a"; using (StringWriter writer = new StringWriter()) { new Serializer().Serialize(writer, k); using (StringReader reader = new StringReader(writer.ToString())) { var j = new Deserializer().Deserialize<string>(reader); } } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Quote should be escaped.
SyntaxErrorException
throws when I serialize and deserialize a string'a
.REPRO
The text was updated successfully, but these errors were encountered: