I have written a program that creates an xml using the following code
I need iso-8859-1 encoding however it is apparently not an option, with this method.
How can I create the encoding that I need?
I am using VB 2019
Thank You
Code:
Dim writer As New XmlTextWriter(SaveFile, System.Text.Encoding.UTF8)
writer.WriteStartDocument(True)
writer.Formatting = Formatting.Indented
writer.Indentation = 5
writer.WriteStartElement("Table")
How can I create the encoding that I need?
I am using VB 2019
Thank You