If I have a POCO defined in C#, can I control how the properties of that POCO are represented in YAML?
For example:
class A
{
string Name{get;set;}
}
I would like it to be serialized as below (lower case, essentially):
a:
name: value
In json.net I can decorate the POCO using attributes that determine how that object should be serialized. Is there an equivalent in YamlDotNet?