I'm trying, what I think, a very simple operation but I can't wrap my head around the exception I'm getting. Basically it's a copy of the Samples.DeserializeObjectGraph example in YamlDotNet: https://dotnetfiddle.net/eImc2H
[System.Runtime.Serialization.SerializationException: Property 'continent_id' not found on type 'YamlDotNet.Samples.DeserializeObjectGraph+Country'.]
I have tried both renaming the property in country to continent_id and the YAML to continentID, but it's still giving the error. So it's not just that it ignores my YamlMember row, it doesn't seems to find the Country class or something.
If I remove the countries array in the continents is it being parsed just fine.
Can someone please explain what I'm doing wrong here?