Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Serialization Error when string start with quote (') #135

Closed
vicancy opened this issue Jul 6, 2015 · 0 comments
Closed

Serialization Error when string start with quote (') #135

vicancy opened this issue Jul 6, 2015 · 0 comments

Comments

@vicancy
Copy link

vicancy commented Jul 6, 2015

Quote should be escaped.
SyntaxErrorException throws when I serialize and deserialize a string '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);
                }
            }
        }
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants