hadashiA / VYaml

The extra fast, low memory footprint YAML library for C#, focued on .NET and Unity.
MIT License
305 stars 18 forks source link

Change tuple format as flow-sequence #35

Closed hadashiA closed 1 year ago

hadashiA commented 1 year ago

Serialize(("item1", "item2"))

Before

- item1
- item2

After

[item1, item2]