Base64 Encoded Xml File
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Can anyone tell me how to write a Base64 Encoded xml file? I ve written the following 2 statements: XmlTextWriter writer; writer = new XmlTextWriter("msg.xml",null); The second argument of XmlTextWriter is presently null, and it accepts the Encoding! Can anyone tell me what do I need to write in place of "null" to write the file as Base64 encoded?