I'm not exactly sure if it's called a header, but anyway, I'm using a serializer in C# to generate XML tags,
How do I remove the xml link that's stuck on my first tag, for example currently I have:
<FirstTag xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> testData
</FirstTag>
And this is the desired output:
<FirstTag> testData </FirstTag>