Manually Create classes to map to XML Request Response
问题 I have been assigned to implement an interface to an API that uses XML request/response. The API providers don't provide any xsd(s) for the XML calls. I generated the C# classes using xsd.exe: .xml -> .xsd -> .cs However, I did not find the generated classes satisfactory, as the calls include a lot of lists, which xsd.exe doesn't handle properly. Should I take the pain and create classes manually that maps to all the request/responses? That might help in maintaining the code easily later on.