Earlier quoted context omitted.
I stopped reading when it got all shouty, and a quick scan doesn't show whether it's got actual sample code. It's also been a long while since I wrote any C# for real, and even longer since I had to deal with .NET's XmlSerializer. It used to be a pain in the backside to deal with XML in .NET if you wanted to just deserialise a file to an object. You'd need to mark up the class with attributes and stuff. I remember be…
> I'm not sure if XmlSerializer ever caught up in that regard. Not really. The one thing that exists to make this easier is xsd.exe, which can generate the code for these classes from and XML Schema file. https://learn.microsoft.com/en-us/dotnet/standard/serializat...
I had a ton of scripts that generated classes from XML and SQL Tables. I forget exactly how.