using System.Collections.Generic;
using YamlDotNet.Core.Events;
using YamlDotNet.Serialization;
using YamlDotNet.Serialization.EventEmitters;
public static void Main(string[] args)
var serializer = new SerializerBuilder()
.WithEventEmitter(nextEmitter => new NullStringsAsEmptyEventEmitter(nextEmitter))
var yaml = serializer.Serialize(new[] { "one", null, "three" });
public class NullStringsAsEmptyEventEmitter : ChainedEventEmitter
public NullStringsAsEmptyEventEmitter(IEventEmitter nextEmitter)
public override void Emit(ScalarEventInfo eventInfo, IEmitter emitter)
if (eventInfo.Source.Type == typeof(string) && eventInfo.Source.Value == null)
emitter.Emit(new Scalar(string.Empty));
base.Emit(eventInfo, emitter);