VYaml
VYaml copied to clipboard
Feature Request: Async Serialize
as there allready exists an async deserialize a async serialize would be good to have
also a serialize to stream would be good to have like
public static void Serialize<T>(T value, Stream stream,YamlSerializerOptions? options = null)
{
stream.Write(Serialize(value, options).Span);
}