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? 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
Hi,
Consider the following example:
using System; using YamlDotNet.Serialization; namespace Test { internal class Program { private static void Main(string[] args) { var serializer = new Serializer(); serializer.Serialize(Console.Out, " line\nline"); } } }
The above results in the following output:
>2- line line
There is actually a NUL byte after >2:
NUL
>2
00000000 3e 32 00 2d 0d 0a 20 20 20 6c 69 6e 65 0d 0a 20 |>2.-.. line.. | 00000010 20 6c 69 6e 65 0d 0a | line..| 00000017
Tested with YamlDotNet 3.9.0 from NuGet.
The text was updated successfully, but these errors were encountered:
@aaubry Any chance of releasing a 4.0.1 to NuGet, containing this fix? :)
Sorry, something went wrong.
I'm closing since the issue is now fixed and prereleases are available on NuGet.
Hi, I will do a release in the next few days that will include this fix. Thanks.
No branches or pull requests
Hi,
Consider the following example:
The above results in the following output:
There is actually a
NUL
byte after>2
:Tested with YamlDotNet 3.9.0 from NuGet.
The text was updated successfully, but these errors were encountered: