An ounce of prevention is worth a pound of cure. ~Ben Franklin
123456789
StringWriter sw = new StringWriter();XmlTextWriter xw = new XmlTextWriter(sw); // Save Xml Document to Text Writter.doc.WriteTo(xw);System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding(); // Convert Xml Document To Byte Array.byte[] docAsBytes = encoding.GetBytes(sw.ToString());
No Comments