Visual Studio Code – Universal way of extracting tag values out of XML document to a List<string>
I have a XML document being loaded into a webpage representing a single client looking like this: <!--?xml version="1.0" encoding="UTF-8" ?--> <html> <head></head> <body> <document> <Name>Pablo</Name> <Surname>Salamanca</Surename> <Age>68</Age> <Gender>M</Gender> </document> </body> </html> Resulting page show data and nothing more like…