I am using C # Yaml Parser mentioned on the code project site
If my Yaml looks like this
- id: tagid tag: - name: tagname value: tagvalue
After it has been successfully analyzed, how can I access the data elements so that I can continue processing. For example, if I need to get the value "name", what code I will need to write, the document says that it uses doc.Root, but cannot find any examples of how to use it.
c # yaml
Anand shah
source share