YamlDotNet
YamlDotNet copied to clipboard
YamlDotNet is a .NET library for YAML
I'm trying to serialize an object that contains a property which is a dictionary of type Dictionary. Basically this property will be an arbitrary json object, which can have different...
This is what I do when I try to deserialize an int[] ``` public class config { public string light_com { get; set; } public string screen_com { get; set;...
Multi-line scalars need to be indented by at least a single space when already indented. Fixes #625
**Is your feature request related to a problem? Please describe.** In order to comply with the design specification of domain model classes, we set the parameterless constructor to `non-public`. This...
**Describe the bug** Following YAML checks out as valid in online parsers: ```yaml es5id: 11.4.7-4-1 description: -"" should be zero ``` but after upgrade from 11.2.1 to 12.0.0 it started...
Sometimes one just wants to ask questions about the YAML that's being processed rather than needing to deserialize it into an entire object graph. This is especially common when parts...
I see you're using a few things from the `Bullseye.Internal` namespace—mainly `Palette` and `HostExtensions`. FYI I'm currently working on [making those public](https://github.com/adamralph/bullseye/pull/800) in Bullseye 4.1.0. One thing I'd like to...
fixes #709
**Describe the bug** When defining anchors on unmatched properties, they cannot be used as-is in properties that are matched. When doing `
Firstly, great library, thanks 👍 I am persisting various objects to YAML files, some of which have string properties that are multi-line. My LiteralMultilineEventEmitter is working to a degree, however...