SharpYaml
SharpYaml copied to clipboard
[Question] Is there a way to make nested data block style and rest flow style using the serializer?
Currently i want to make my output similar to PyYAML which makes nested types block and the rest default to flow style. I did attempt to create my yaml manually with YamlNodes however I found the serializer to be significantly more faster and would prefer to use that.
Also worth noting, the data is dynamic and also the nested types are the same, so I cannot define one type to always be flow style.