YamlDotNet
YamlDotNet copied to clipboard
YamlDotNet is a .NET library for YAML
Is there a way to serialize a string that is valid as a number, like "001122" and "1_2_3", as a string? I tryed as below ```c# var builder = new...
## Is your feature request related to a problem? Please describe. This one is a bit of a doozy, and touches on several issues I've found are already open or...
Previously the type resolver would only be able to return the static type because the object constructed by the factory was not passed into the type descriptor. See the added...
Missing support for 10.3.2. Tag Resolution -> only null and bool were "resolved" correctly
Removed support for Octal numbers as this is no longer supported in the YAML specification.
I made changes so that I can deserialize yaml to fields, which should address #117 "Serializing also fields and not just properties will make life easier". This is convenient for...
These are some of the changes for the Unity version of the library. ExampleRunner.cs has been added to enable running of the examples. 'ValidatingDuringDeserialization.cs' has been skipped since I didn't...
Seems there is a problem with deserializing double-quoted multi-line strings. Until a few versions this deserialized fine and according to yaml testers this should not be a problem: **Problem:** ```yml...
Is it possible to combine a custom serializer with one from the builder? For instance: I have a class in my code which I want to do some manual serialization....