hadashiA / VYaml

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

Does VYaml support deserialization of objects with auto-property initializer syntax #94

Open MonoLogueChi opened 4 months ago

MonoLogueChi commented 4 months ago

Does VYaml support deserialization of objects with auto-property initializer syntax

eg:

public string S {get;set;} = "s";
public CustomClass CustomClass {get; set;} = new();