I am having issues generating an XML file using the XMLTextWriter. I need to add attributes to a tag:
<response index="#">
but I can't seem to get it to work with a number that changes with a loop counter.
I tried to use .WriteAttributeString and also .WriteStartAttribute, but I keep on getting errors. Any help would be appreciated.
Thanks.
<response index="#">
but I can't seem to get it to work with a number that changes with a loop counter.
Code:
textWriter.WriteStartElement("response")
textWriter.WriteString("")
textWriter.WriteEndElement()
I tried to use .WriteAttributeString and also .WriteStartAttribute, but I keep on getting errors. Any help would be appreciated.
Thanks.