YamlDotNet
YamlDotNet copied to clipboard
SerializeAs not working
trafficstars
[YamlMember(SerializeAs = typeof(int))]
public MyStruct Struct { get; set; }
enum MyStruct
{
None = 0,
First = 1
}
But the output still
Struct: None